2022-11-29 09:28:17 +01:00
|
|
|
@testable import Models
|
2023-01-17 11:36:01 +01:00
|
|
|
import XCTest
|
2022-11-29 09:28:17 +01:00
|
|
|
|
|
|
|
final class ModelsTests: 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(Models().text, "Hello, World!")
|
|
|
|
}
|
2022-11-29 09:28:17 +01:00
|
|
|
}
|