11 lines
227 B
Swift
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!")
|
|
}
|