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