13 lines
197 B
Swift
13 lines
197 B
Swift
import XCTest
|
|
@testable import App
|
|
|
|
class AppTests: XCTestCase {
|
|
func testStub() throws {
|
|
XCTAssert(true)
|
|
}
|
|
|
|
static let allTests = [
|
|
("testStub", testStub),
|
|
]
|
|
}
|