22 lines
617 B
Swift
22 lines
617 B
Swift
import XCTest
|
|
|
|
class Tests_iOS: XCTestCase {
|
|
|
|
override func setUpWithError() throws {
|
|
continueAfterFailure = false
|
|
}
|
|
|
|
override func tearDownWithError() throws {
|
|
// Put teardown code here. This method is called after the invocation of each test method in the class.
|
|
}
|
|
|
|
func testExample() throws {
|
|
// UI tests must launch the application that they test.
|
|
let app = XCUIApplication()
|
|
app.launch()
|
|
|
|
// Use recording to get started writing UI tests.
|
|
// Use XCTAssert and related functions to verify your tests produce the correct results.
|
|
}
|
|
}
|