SwiftyMarkdownExampleTests.swift 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // SwiftyMarkdownExampleTests.swift
  3. // SwiftyMarkdownExampleTests
  4. //
  5. // Created by Simon Fairbairn on 05/03/2016.
  6. // Copyright © 2016 Voyage Travel Apps. All rights reserved.
  7. //
  8. import XCTest
  9. @testable import SwiftyMarkdownExample
  10. class SwiftyMarkdownExampleTests: 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. // Use XCTAssert and related functions to verify your tests produce the correct results.
  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. }