diff options
Diffstat (limited to 'Tests/XCTest/CocoaExampleTests/CocoaExampleTests.m')
-rw-r--r-- | Tests/XCTest/CocoaExampleTests/CocoaExampleTests.m | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Tests/XCTest/CocoaExampleTests/CocoaExampleTests.m b/Tests/XCTest/CocoaExampleTests/CocoaExampleTests.m new file mode 100644 index 0000000000..70d61d6ffc --- /dev/null +++ b/Tests/XCTest/CocoaExampleTests/CocoaExampleTests.m @@ -0,0 +1,13 @@ +#import <XCTest/XCTest.h> + +@interface CocoaExampleTests : XCTestCase + +@end + +@implementation CocoaExampleTests + +- (void)testExample { + XCTAssert(YES, @"Pass"); +} + +@end |