如何测试viewController
,viewdidload
& viewdidAppear
,在测试用例中永远不会调用。如何测试我的自定义viewdidload代码?
所有测试用例是否并发?或者在所有测试文件中首先调用哪个测试用例。我想在所有测试用例之前从网络中获取一些数据,如何实现呢?
答案 0 :(得分:0)
For 1.您可以创建UIAutomation bot来测试您的代码。如果您不想进行任何集成测试,可以尝试直接调用[viewController viewDidLoad]
对于一个文件中的2.测试按字母顺序执行,我看到很多人要做测试,如001_testSomething,002_testSomethingElse等。
如果您想准备数据,可以在setUp函数中执行:
- (void)setUp
{
[super setUp];
// Put setup code here. This method is called before the invocation of each test method in the class.
}