aboutsummaryrefslogtreecommitdiff
path: root/UnitTesting/GTMIPhoneUnitTestMain.m
diff options
context:
space:
mode:
authorGravatar Thomas Van Lenten <thomasvl@google.com>2016-12-05 18:04:00 -0500
committerGravatar Thomas Van Lenten <thomasvl@google.com>2016-12-05 18:04:00 -0500
commita86965088edd3a754225f0d75cb6137c187c9265 (patch)
tree654dd650f5e5d60fe2170112cd624c44825ee33c /UnitTesting/GTMIPhoneUnitTestMain.m
parent2ef3625a9193d4855931a73e0e5b3eb29d0231c3 (diff)
First pass removing all deprecated uses of GTM_IPHONE_USE_SENTEST.
SENTEST as a framework doesn't exist anymore so there's no point in supporting it.
Diffstat (limited to 'UnitTesting/GTMIPhoneUnitTestMain.m')
-rw-r--r--UnitTesting/GTMIPhoneUnitTestMain.m5
1 files changed, 2 insertions, 3 deletions
diff --git a/UnitTesting/GTMIPhoneUnitTestMain.m b/UnitTesting/GTMIPhoneUnitTestMain.m
index 0a504b7..1f4ca44 100644
--- a/UnitTesting/GTMIPhoneUnitTestMain.m
+++ b/UnitTesting/GTMIPhoneUnitTestMain.m
@@ -56,9 +56,8 @@ int main(int argc, char *argv[]) {
#else
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
#endif
-#if GTM_IPHONE_USE_SENTEST || GTM_USING_XCTEST
- // Is using SenTest or XCTest, just create a dummy app that can be used as the
- // TEST_HOST.
+#if GTM_USING_XCTEST
+ // Is using XCTest, just create a dummy app that can be used as the TEST_HOST.
retVal = UIApplicationMain(argc, argv, nil, nil);
#else
retVal = UIApplicationMain(argc, argv, nil, @"GTMIPhoneUnitTestDelegate");