Files
picar/SwiftyCar/Tests/SwiftyCarTests/SwiftyCarTests.swift
2020-05-07 20:54:26 +09:30

16 lines
412 B
Swift

import XCTest
@testable import SwiftyCar
final class SwiftyCarTests: XCTestCase {
func testExample() {
// This is an example of a functional test case.
// Use XCTAssert and related functions to verify your tests produce the correct
// results.
XCTAssertEqual(SwiftyCar().text, "Hello, World!")
}
static var allTests = [
("testExample", testExample),
]
}