如何测试块是否被调用

时间:2012-01-27 09:28:20

标签: objective-c ios unit-testing sentestingkit

我对一个应该调用完成块或失败块的方法进行单元测试。现在我知道应该调用哪一个,所以我在不应该调用的块中使用STFail

我现在如何测试是否真的调用了应该调用的块?

这是我的设置:

NSString *parameter = @"foo";
[controller doSomethingWithParameter:parameter withcompletionBlock: 
^(NSString *result)
{
    // This block should be invoked
    // Check if the result is correct
    STAssertEquals(result, kSomeOKConstant, @"Result shout be 'kSomeOKConstant'");
} failedBlock:
^(NSString *errorMessage) {
    STFail(@"No error should happen with parameter '%@'",parameter);
}];

1 个答案:

答案 0 :(得分:3)

您需要添加块变量,并从块内部设置它们:

BOOL __block successBlockInvoked = NO;
BOOL __block failureBlockInvoked = NO;
NSString *parameter = @"foo";
[controller doSomethingWithParameter:parameter withcompletionBlock: 
^(NSString *result) {
     successBlockInvoked = YES;
     STAssertEquals(result, kSomeOKConstant, @"Result shout be 'kSomeOKConstant'");
} failedBlock:
^(NSString *errorMessage) {
    failureBlockInvoked = YES;
    STFail(@"No error should happen with parameter '%@'",parameter);
}];

此时您可以对successBlockInvokedfailureBlockInvoked的值进行断言:如果未设置预期值,则表示测试失败。