]>
Commit | Line | Data |
---|---|---|
1b85f723 RBR |
1 | // |
2 | // MapTests.swift | |
3 | // MapTests | |
4 | // | |
5 | // Created by Ruben Beltran del Rio on 2/1/21. | |
6 | // | |
7 | ||
8 | import XCTest | |
5e8ff485 | 9 | |
1b85f723 RBR |
10 | @testable import Map |
11 | ||
12 | class MapTests: XCTestCase { | |
13 | ||
5e8ff485 RBR |
14 | override func setUpWithError() throws { |
15 | // Put setup code here. This method is called before the invocation of each test method in the class. | |
16 | } | |
1b85f723 | 17 | |
5e8ff485 RBR |
18 | override func tearDownWithError() throws { |
19 | // Put teardown code here. This method is called after the invocation of each test method in the class. | |
20 | } | |
1b85f723 | 21 | |
5e8ff485 RBR |
22 | func testExample() throws { |
23 | // This is an example of a functional test case. | |
24 | // Use XCTAssert and related functions to verify your tests produce the correct results. | |
25 | } | |
1b85f723 | 26 | |
5e8ff485 RBR |
27 | func testPerformanceExample() throws { |
28 | // This is an example of a performance test case. | |
29 | self.measure { | |
30 | // Put the code you want to measure the time of here. | |
1b85f723 | 31 | } |
5e8ff485 | 32 | } |
1b85f723 RBR |
33 | |
34 | } |