1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #import <XCTest/XCTest.h>
- @interface KulexiuForTeacherUITests : XCTestCase
- @end
- @implementation KulexiuForTeacherUITests
- - (void)setUp {
-
-
- self.continueAfterFailure = NO;
-
- }
- - (void)tearDown {
-
- }
- - (void)testExample {
-
- XCUIApplication *app = [[XCUIApplication alloc] init];
- [app launch];
-
-
- }
- - (void)testLaunchPerformance {
- if (@available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 7.0, *)) {
-
- [self measureWithMetrics:@[[[XCTApplicationLaunchMetric alloc] init]] block:^{
- [[[XCUIApplication alloc] init] launch];
- }];
- }
- }
- @end
|