2
:의 ViewController 더 식별자 SEGUE이 없습니다단위 테스트 : 나는 방법을 아래에 테스트 할 "SEGUE ID"
- (void)testMyMethod
{
// Call method to test
[testClass myMethod];
// Tests
GHAssertNil(testClass.contact, @"contact should be nil.");
}
테스트를 실행 :
- (void)myMethod
{
self.contact = nil;
[self performSegueWithIdentifier:@"segue id" sender:self];
}
이것은 내가 테스트 클래스에서 할 것입니다 나에게 오류를 준다 :
Reason : Receiver (<RS_MainViewController:0x126b6330>) has no segue with identifier 'segue id'
왜 나는이 오류가 발생하고 해결책은 무엇입니까?
스토리 보드에서 해당 단절의 segue id를 지정 했습니까? – JPetric
@JPetric 예. 있습니다. – Geek