diff --git a/examples/Hello/HelloTest.m b/examples/Hello/HelloTest.m index 7fc3082e3d..125ce2e59f 100644 --- a/examples/Hello/HelloTest.m +++ b/examples/Hello/HelloTest.m @@ -13,9 +13,12 @@ #import @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