Files
SwiftRunnerTesting/Tests/SwiftRunnerTestingTests/Tests.swift
T
2026-08-24 06:34:01 -07:00

11 lines
227 B
Swift

import Testing
@testable import SwiftRunnerTesting
@Test func expectWorld() async throws {
#expect(sayHello() == "Hello, World!")
}
@Test func expectAlex() async throws {
#expect(sayHello(to: "Alex") == "Hello, Alex!")
}