Skip to content

Commit

Permalink
Added XCTest to avoid "empty test suite" TAP warning. We just need to…
Browse files Browse the repository at this point in the history
… verify that

the built test bundle executes, indicating the project didn't break it's sample apps.

	Change on 2018/04/12 by tball <[email protected]>

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=192678712
  • Loading branch information
tomball committed Apr 17, 2018
1 parent 319effd commit 5a76450
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion examples/Hello/HelloTest.m
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@
#import <XCTest/XCTest.h>

@interface HelloTest : XCTestCase
// No tests necessary, as this class is used to just build the hello library.
@end

@implementation HelloTest

- (void)testAppExecution {
XCTAssert(true);
}

@end

0 comments on commit 5a76450

Please sign in to comment.