sendActionsForControlEvents不能在单元测试中工作

时间:2017-02-16 03:44:22

标签: ios objective-c unit-testing

我想在Unit Test code中触发testButton的TouchUpInside事件,但似乎无效。

- (void)testAction {
    UIButton *testButton = [[UIButton alloc] init];
   [testButton addTarget:self action:@selector(handleButtonEvent:)
     forControlEvents:UIControlEventTouchUpInside];
   [testButton sendActionsForControlEvents:UIControlEventTouchUpInside];
}

只是不知道如何修复这个错误。

0 个答案:

没有答案