SwiftyMarkdownExampleUITests.swift 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // SwiftyMarkdownExampleUITests.swift
  3. // SwiftyMarkdownExampleUITests
  4. //
  5. // Created by Simon Fairbairn on 05/03/2016.
  6. // Copyright © 2016 Voyage Travel Apps. All rights reserved.
  7. //
  8. import XCTest
  9. class SwiftyMarkdownExampleUITests: XCTestCase {
  10. override func setUp() {
  11. super.setUp()
  12. // Put setup code here. This method is called before the invocation of each test method in the class.
  13. // In UI tests it is usually best to stop immediately when a failure occurs.
  14. continueAfterFailure = false
  15. // UI tests must launch the application that they test. Doing this in setup will make sure it happens for each test method.
  16. XCUIApplication().launch()
  17. // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this.
  18. }
  19. override func tearDown() {
  20. // Put teardown code here. This method is called after the invocation of each test method in the class.
  21. super.tearDown()
  22. }
  23. func testExample() {
  24. // Use recording to get started writing UI tests.
  25. // Use XCTAssert and related functions to verify your tests produce the correct results.
  26. }
  27. }