mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
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)
|
||
|
|
]
|
||
|
|
}
|