14 lines
215 B
Swift
14 lines
215 B
Swift
|
import App
|
||
|
import Dispatch
|
||
|
import XCTest
|
||
|
|
||
|
final class AppTests : XCTestCase {
|
||
|
func testNothing() throws {
|
||
|
XCTAssert(true)
|
||
|
}
|
||
|
|
||
|
static let allTests = [
|
||
|
("testNothing", testNothing),
|
||
|
]
|
||
|
}
|