blob: b960c26442f24e1318532646b941e18f9ac03850 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
//
// 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"
// Add GTM_IS_COVERAGE_BUILD to your GCC_PREPROCESSOR_DEFINITIONS for the
// Xcode Configuration that wants CodeCoverage support.
#if GTM_IS_COVERAGE_BUILD
extern void __gcov_flush();
@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)];
}
// Call flush for this executable unit.
__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
#endif // GTM_IS_COVERAGE_BUILD
|