MailAppDemoSwiftTests.swift 944 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // MailAppDemoSwiftTests.swift
  3. // MailAppDemoSwiftTests
  4. //
  5. // Created by Imanol Fernandez Gorostizag on 17/11/14.
  6. // Copyright (c) 2014 Imanol Fernandez. All rights reserved.
  7. //
  8. import UIKit
  9. import XCTest
  10. class MailAppDemoSwiftTests: XCTestCase {
  11. override func setUp() {
  12. super.setUp()
  13. // Put setup code here. This method is called before the invocation of each test method in the class.
  14. }
  15. override func tearDown() {
  16. // Put teardown code here. This method is called after the invocation of each test method in the class.
  17. super.tearDown()
  18. }
  19. func testExample() {
  20. // This is an example of a functional test case.
  21. XCTAssert(true, "Pass")
  22. }
  23. func testPerformanceExample() {
  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. }