ZhongJingLianMengUITests.m 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // ZhongJingLianMengUITests.m
  3. // ZhongJingLianMengUITests
  4. //
  5. // Created by youke on 2018/11/14.
  6. // Copyright © 2018 youke. All rights reserved.
  7. //
  8. #import <XCTest/XCTest.h>
  9. @interface ZhongJingLianMengUITests : XCTestCase
  10. @end
  11. @implementation ZhongJingLianMengUITests
  12. - (void)setUp {
  13. [super setUp];
  14. // Put setup code here. This method is called before the invocation of each test method in the class.
  15. // In UI tests it is usually best to stop immediately when a failure occurs.
  16. self.continueAfterFailure = NO;
  17. // UI tests must launch the application that they test. Doing this in setup will make sure it happens for each test method.
  18. [[[XCUIApplication alloc] init] launch];
  19. // 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.
  20. }
  21. - (void)tearDown {
  22. // Put teardown code here. This method is called after the invocation of each test method in the class.
  23. [super tearDown];
  24. }
  25. - (void)testExample {
  26. // Use recording to get started writing UI tests.
  27. // Use XCTAssert and related functions to verify your tests produce the correct results.
  28. }
  29. @end