From 5a764504713947bb8bcf41e67d064bb51bc7fdb7 Mon Sep 17 00:00:00 2001 From: tball Date: Thu, 12 Apr 2018 15:13:57 -0700 Subject: [PATCH] Added XCTest to avoid "empty test suite" TAP warning. We just need to verify that the built test bundle executes, indicating the project didn't break it's sample apps. Change on 2018/04/12 by tball ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=192678712 --- examples/Hello/HelloTest.m | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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