我在Xcode中设置了一个带有单元测试框架的应用程序。之后,我为应用程序编写了测试代码。
例如,
[welcomeViewController next:welcomeViewController.nextButton];
这将推动viewController
中的另一个UINavigationViewController
。
但是,模拟器中的视图不会更改,并且也不会调用另一个viewController的viewDidAppear
事件。我检查了另一个viewWillAppear
的{{1}}事件被正确调用。
这是单元测试框架的错误还是我在使用单元测试框架时错了?
提前致谢。