16 lines
359 B
Swift
16 lines
359 B
Swift
@testable import Models
|
|
import XCTest
|
|
|
|
final class ViewsTests: 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("Hello", "Hello")
|
|
}
|
|
|
|
static var allTests = [
|
|
("testExample", testExample)
|
|
]
|
|
}
|