GHUnit和AFNetWorking之间的兼容性

时间:2013-02-26 15:36:03

标签: ios objective-c-blocks afnetworking gh-unit

  

嗨,我尝试使用GHUnit创建单元测试,但我有一个   例外,我认为它是AFNetWorking和GHUnit之间兼容性的问题        异常'GHTestFailureException',原因:'失败'        * 第一次抛出调用堆栈:(0x1de4012 0x163fe7e 0x1e6cfb1 0x2a4c1 0x2f20 0x137a4 0x191553f 0x1927014 0x19177d5 0x1d8aaf5 0x1d89f44   0x1d89e1b 0x21777e3 0x2177668 0x7b065c 0x1f3c 0x1e95)libc ++ abi.dylib:   终止调用抛出异常

  NSURL *url = [NSURL @"https://www.myWebsite.com"];
        NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:60.0];

        AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc]initWithRequest:theRequest];


        [operation setAuthenticationChallengeBlock:^(NSURLConnection *connection, NSURLAuthenticationChallenge *challenge) {
            NSURLCredential *newCredential = [NSURLCredential credentialWithUser:@"login" password:@"password" persistence:NSURLCredentialPersistenceForSession];
            [challenge.sender useCredential:newCredential forAuthenticationChallenge:challenge];
        }];

            NSLog(@"Response from %@",response);

        } failure:^(AFHTTPRequestOperation *operation, NSError *error) {

            GHFail(@"failed"); }];


        [operation start];
        [operation waitUntilFinished];