单元测试:视图控制器没有标识符:"segue id"



我想测试以下方法:

- (void)myMethod
{
    self.contact = nil;
    [self performSegueWithIdentifier:@"segue id" sender:self];
}

这就是我在测试课上所做的:

- (void)testMyMethod
{
    // Call method to test
    [testClass myMethod];
    // Tests
    GHAssertNil(testClass.contact, @"contact should be nil.");
}

运行测试给我错误:

Reason : Receiver (<RS_MainViewController:0x126b6330>) has no segue with identifier 'segue id'

为什么会出现此错误,解决方案是什么?

在测试中,我不得不从故事板加载视图控制器,然后它就工作了。我能够在测试中调用viewDidLoad并继续。

UIStoryboard* storyboard = [UIStoryboard storyboardWithName:@"MyStoryboard" bundle:nil];
UIViewController* controller = [storyboard instantiateViewControllerWithIdentifier:@"MyViewControllerId"];
AAAMyViewController* viewController = (AAAMyViewController*)controller;

我还必须进入情节提要,并为此视图控制器添加一个情节提要ID(MyViewControllerId)。

相关内容

  • 没有找到相关文章

最新更新