#ifdef语句检查测试方案

or *_*ran 4 objective-c ios c-preprocessor

我已经为我的项目添加了一个测试目标,现在我想分开那些不会在app目标上执行的代码部分.让我们说应用程序调用TestMyApp,我希望它是这样的:

-(void)addDevice:(Account*)account{
NSURL *url = [NSURL URLWithString:K_THINKERBELL_SERVER_URL];
AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:url];
SBJsonWriter *jsonWriter = [[SBJsonWriter alloc] init];    


NSDictionary *params = @{@"device_id":account.deviceID,
                         @"token":account.deviceToken ? account.deviceToken : @"fuygciureygfiyuergfyurgfuyergfuyerguy",
                         @"type":account.deviceName,
                         @"os_type":@"ios",
                         @"os_version":account.os,
                         @"accounts":_accounts};


NSString *js = [jsonWriter stringWithObject:params];
NSMutableURLRequest *request = [httpClient requestWithMethod:@"PUT" path:@"/device" parameters:nil];
NSData *requestData = [NSData dataWithBytes:[js UTF8String] length:[js length]];
[request setHTTPBody:requestData];
[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
AFHTTPRequestOperation *operation = [httpClient HTTPRequestOperationWithRequest:request
    success:^(AFHTTPRequestOperation *operation, id responseObject) {
        NSError *error = nil;
        NSDictionary *JSON = [NSJSONSerialization JSONObjectWithData:responseObject options:NSJSONReadingAllowFragments error:&error];
        if (error) {
            NSLog(@"%@",JSON);
        }
        NSLog(@"%@",JSON);
        if ([[JSON objectForKey:@"status"]isEqualToString:@"success"]) {

***#ifdef TestMyApp
   some code here***
  [self.testDelegate addDeviceJson:JSON type:@"addDevice"];
                                                            [self deviceAdded:[JSON objectForKey:@"uid"]];
                                                            [self.accountsDelegate deviceDidAdded];
                                                        }
                                                    }
                                                                        failure:^(AFHTTPRequestOperation *operation, NSError *error){
                                                                        }];
[httpClient enqueueHTTPRequestOperation:operation];
}
Run Code Online (Sandbox Code Playgroud)

hyb*_*ttt 7

转到目标,预处理部分.在"预处理器宏"中,您可以为任何方案添加定义.例如:

TESTING=1
Run Code Online (Sandbox Code Playgroud)

然后你就可以写了

#ifdef TESTING
...
#endif
Run Code Online (Sandbox Code Playgroud)

要么

#if TESTING
...
#endif
Run Code Online (Sandbox Code Playgroud)