RemoteConfigSampleAppUITests.m 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // Copyright 2019 Google
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #import <XCTest/XCTest.h>
  15. @interface RemoteConfigSampleAppUITests : XCTestCase
  16. @end
  17. @implementation RemoteConfigSampleAppUITests
  18. - (void)setUp {
  19. // Put setup code here. This method is called before the invocation of each test method in the
  20. // class.
  21. // In UI tests it is usually best to stop immediately when a failure occurs.
  22. self.continueAfterFailure = NO;
  23. // UI tests must launch the application that they test. Doing this in setup will make sure it
  24. // happens for each test method.
  25. [[[XCUIApplication alloc] init] launch];
  26. // In UI tests it’s important to set the initial state - such as interface orientation - required
  27. // for your tests before they run. The setUp method is a good place to do this.
  28. }
  29. - (void)tearDown {
  30. // Put teardown code here. This method is called after the invocation of each test method in the
  31. // class.
  32. }
  33. - (void)testExample {
  34. // Use recording to get started writing UI tests.
  35. // Use XCTAssert and related functions to verify your tests produce the correct results.
  36. }
  37. @end