ShaarliOSUITests.swift 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // ShaarliOSUITests.swift
  3. // ShaarliOSUITests
  4. //
  5. // Created by Marcus Rohrmoser on 09.06.19.
  6. // Copyright © 2019-2022 Marcus Rohrmoser mobile Software http://mro.name/me. All rights reserved.
  7. //
  8. // This program is free software: you can redistribute it and/or modify
  9. // it under the terms of the GNU General Public License as published by
  10. // the Free Software Foundation, either version 3 of the License, or
  11. // (at your option) any later version.
  12. //
  13. // This program is distributed in the hope that it will be useful,
  14. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. // GNU General Public License for more details.
  17. //
  18. // You should have received a copy of the GNU General Public License
  19. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. //
  21. import XCTest
  22. class ShaarliOSUITests: XCTestCase {
  23. override func setUp() {
  24. // Put setup code here. This method is called before the invocation of each test method in the class.
  25. // In UI tests it is usually best to stop immediately when a failure occurs.
  26. continueAfterFailure = false
  27. // UI tests must launch the application that they test. Doing this in setup will make sure it happens for each test method.
  28. XCUIApplication().launch()
  29. // 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.
  30. }
  31. override func tearDown() {
  32. // Put teardown code here. This method is called after the invocation of each test method in the class.
  33. }
  34. func testExample() {
  35. // Use recording to get started writing UI tests.
  36. // Use XCTAssert and related functions to verify your tests produce the correct results.
  37. }
  38. }