ios_sampleTests.swift (1015B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 import XCTest 6 @testable import ios_sample 7 8 class ios_sampleTests: XCTestCase { 9 10 override func setUpWithError() throws { 11 // Put setup code here. This method is called before the invocation of each test method in the class. 12 } 13 14 override func tearDownWithError() throws { 15 // Put teardown code here. This method is called after the invocation of each test method in the class. 16 } 17 18 func testExample() throws { 19 // This is an example of a functional test case. 20 // Use XCTAssert and related functions to verify your tests produce the correct results. 21 } 22 23 func testPerformanceExample() throws { 24 // This is an example of a performance test case. 25 self.measure { 26 // Put the code you want to measure the time of here. 27 } 28 } 29 30 }