2022-11-20 16:39:06 +01:00
|
|
|
@testable import Network
|
2023-01-17 11:36:01 +01:00
|
|
|
import XCTest
|
2022-11-20 16:39:06 +01:00
|
|
|
|
|
|
|
final class NetworkTests: XCTestCase {
|
2023-01-17 11:36:01 +01:00
|
|
|
func testExample() throws {
|
|
|
|
// This is an example of a functional test case.
|
|
|
|
// Use XCTAssert and related functions to verify your tests produce the correct
|
|
|
|
// results.
|
|
|
|
XCTAssertEqual(Network().text, "Hello, World!")
|
|
|
|
}
|
2022-11-20 16:39:06 +01:00
|
|
|
}
|