VapxToolUITests.m 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // Tencent is pleased to support the open source community by making vap available.
  2. //
  3. // Copyright (C) 2020 THL A29 Limited, a Tencent company. All rights reserved.
  4. //
  5. // Licensed under the MIT License (the "License"); you may not use this file except in
  6. // compliance with the License. You may obtain a copy of the License at
  7. //
  8. // http://opensource.org/licenses/MIT
  9. //
  10. // Unless required by applicable law or agreed to in writing, software distributed under the License is
  11. // distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
  12. // either express or implied. See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #import <XCTest/XCTest.h>
  15. @interface VapxToolUITests : XCTestCase
  16. @end
  17. @implementation VapxToolUITests
  18. - (void)setUp {
  19. // Put setup code here. This method is called before the invocation of each test method in the class.
  20. // In UI tests it is usually best to stop immediately when a failure occurs.
  21. self.continueAfterFailure = NO;
  22. // UI tests must launch the application that they test. Doing this in setup will make sure it happens for each test method.
  23. [[[XCUIApplication alloc] init] launch];
  24. // 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.
  25. }
  26. - (void)tearDown {
  27. // Put teardown code here. This method is called after the invocation of each test method in the class.
  28. }
  29. - (void)testExample {
  30. // Use recording to get started writing UI tests.
  31. // Use XCTAssert and related functions to verify your tests produce the correct results.
  32. }
  33. @end