| Index: test/mac/xcuitest/TestCase.m
|
| diff --git a/test/mac/xctest/TestCase.m b/test/mac/xcuitest/TestCase.m
|
| similarity index 84%
|
| copy from test/mac/xctest/TestCase.m
|
| copy to test/mac/xcuitest/TestCase.m
|
| index 36846a1fda24b27c8dd10f497be91228b5ae0672..1f32b7af7457095cd08adda6d2d30d9e09a63476 100644
|
| --- a/test/mac/xctest/TestCase.m
|
| +++ b/test/mac/xcuitest/TestCase.m
|
| @@ -3,14 +3,13 @@
|
| // found in the LICENSE file.
|
|
|
| #import <XCTest/XCTest.h>
|
| -#import "MyClass.h"
|
|
|
| @interface TestCase : XCTestCase
|
| @end
|
|
|
| @implementation TestCase
|
| - (void)testFoo {
|
| - MyClass *foo = [[MyClass alloc] init];
|
| + XCUIApplication *foo = [[XCUIApplication alloc] init];
|
| XCTAssertNotNil(foo, @"expected non-nil object");
|
| }
|
| @end
|
|
|