Tests.swift 752 B

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