aboutsummaryrefslogtreecommitdiff
path: root/UnitTesting/GTMCodeCoverageTestsXC.m
diff options
context:
space:
mode:
Diffstat (limited to 'UnitTesting/GTMCodeCoverageTestsXC.m')
-rw-r--r--UnitTesting/GTMCodeCoverageTestsXC.m72
1 files changed, 72 insertions, 0 deletions
diff --git a/UnitTesting/GTMCodeCoverageTestsXC.m b/UnitTesting/GTMCodeCoverageTestsXC.m
new file mode 100644
index 0000000..39e4850
--- /dev/null
+++ b/UnitTesting/GTMCodeCoverageTestsXC.m
@@ -0,0 +1,72 @@
+//
+// GTMCodeCovereageTestsXC.m
+//
+// Copyright 2013 Google Inc.
+//
+// Licensed under the Apache License, Version 2.0 (the "License"); you may not
+// use this file except in compliance with the License. You may obtain a copy
+// of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+// License for the specific language governing permissions and limitations under
+// the License.
+//
+
+// This code exists for doing code coverage with Xcode and iOS.
+// Please read through https://code.google.com/p/coverstory/wiki/UsingCoverstory
+// for details.
+
+// This file should be conditionally compiled into your test bundle
+// when you want to do code coverage and are using the XCTest framework.
+
+#import <UIKit/UIKit.h>
+#import <XCTest/XCTest.h>
+
+#import "GTMCodeCoverageApp.h"
+
+@interface GTMCodeCoverageTests : XCTestObserver
+@end
+
+@implementation GTMCodeCoverageTests
+
+- (void)stopObserving {
+ [super stopObserving];
+
+ // Call gtm_gcov_flush in the application executable unit.
+ id application = [UIApplication sharedApplication];
+ if ([application respondsToSelector:@selector(gtm_gcov_flush)]) {
+ [application performSelector:@selector(gtm_gcov_flush)];
+ }
+
+ // Reset defaults back to what they should be.
+ NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
+ [defaults removeObjectForKey:XCTestObserverClassKey];
+}
+
++ (void)load {
+ // Verify that all of our assumptions in [GTMCodeCoverageApp load] still stand
+ NSString *selfClass = NSStringFromClass(self);
+ BOOL mustExit = NO;
+ if (![selfClass isEqual:@"GTMCodeCoverageTests"]) {
+ NSLog(@"Can't change GTMCodeCoverageTests name to %@ without updating GTMCoverageApp",
+ selfClass);
+ mustExit = YES;
+ }
+ if (![GTMXCTestObserverClassKey isEqual:XCTestObserverClassKey]) {
+ NSLog(@"Apple has changed %@ to %@", GTMXCTestObserverClassKey, XCTestObserverClassKey);
+ mustExit = YES;
+ }
+ if (!NSClassFromString(GTMXCTestLogClass)) {
+ NSLog(@"Apple has gotten rid of the log class %@", GTMXCTestLogClass);
+ mustExit = YES;
+ }
+ if (mustExit) {
+ exit(1);
+ }
+}
+
+@end