Raw
1 import UIKit
2 import XCTest
3 import JomloTableView
4
5 class Tests: XCTestCase {
6
7 override func setUp() {
8 super.setUp()
9 // Put setup code here. This method is called before the invocation of each test method in the class.
10 }
11
12 override func tearDown() {
13 // Put teardown code here. This method is called after the invocation of each test method in the class.
14 super.tearDown()
15 }
16
17 func testExample() {
18 // This is an example of a functional test case.
19 XCTAssert(true, "Pass")
20 }
21
22 func testPerformanceExample() {
23 // This is an example of a performance test case.
24 self.measure() {
25 // Put the code you want to measure the time of here.
26 }
27 }
28
29 }