YH_AnalyticsTests.m
2.26 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
//
// YH_AnalyticsTests.m
// YH_AnalyticsTests
//
// Created by Tiger on 15/2/2.
// Copyright (c) 2015年 YOHO. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <XCTest/XCTest.h>
#import "OCMock.h"
#import "YH_Analytics.h"
@interface YH_AnalyticsTests : XCTestCase {
@private
id mock;
}
@end
@implementation YH_AnalyticsTests
- (void)setUp {
[super setUp];
// Put setup code here. This method is called before the invocation of each test method in the class.
NSLog(@"%@ setUp", self.name);
mock = [OCMockObject mockForClass:[YH_Analytics class]];
XCTAssertNotNil(mock, @"Cannot create YH_Analytics mock");
}
- (void)tearDown {
// Put teardown code here. This method is called after the invocation of each test method in the class.
[super tearDown];
NSLog(@"%@ tearDown", self.name);
}
#pragma mark - 方法存在性验证
- (void)testStartWithAppIdMethodWithConstraint {
NSLog(@"%@ start", self.name); // self.name is the name of the test-case method.
[[mock stub] startWithAppId:[OCMArg any]];
[mock startWithAppId:[OCMArg any]];
NSLog(@"%@ end", self.name);
}
- (void)testLogEventMethodWithConstraint {
NSLog(@"%@ start", self.name);
[[mock stub] logEvent:[OCMArg any] parameters:[OCMArg any]];
[mock logEvent:@"event" parameters:nil];
NSLog(@"%@ end", self.name);
}
- (void)testLogErrorMethodWithConstraint {
NSLog(@"%@ start", self.name);
[[mock stub] logError:[OCMArg any] parameters:[OCMArg any]];
[mock logError:@"error" parameters:nil];
NSLog(@"%@ end", self.name);
}
- (void)testLogStrategy {
NSLog(@"%@ start", self.name);
[[mock stub] logStrategy];
[mock logStrategy];
NSLog(@"%@ end", self.name);
}
- (void)testSetLogStrategyWithSpecificArgument {
NSLog(@"%@ start", self.name);
[[mock stub] setLogStrategy:LogStrategyAppLaunch];
[mock setLogStrategy:LogStrategyAppLaunch];
NSLog(@"%@ end", self.name);
}
#pragma mark - 分支测试
- (void)testStartWithAppIdMethodWithLogStrategyAppLaunch {
NSLog(@"%@ start", self.name);
NSLog(@"%@ end", self.name);
}
- (void)testStartWithAppIdMethodWithLogStrategyCustom {
NSLog(@"%@ start", self.name);
NSLog(@"%@ end", self.name);
}
@end