如何在 Objective C 单元测试中添加构造函数?
使用默认的 xcode 测试代码:
#import "MultiVueTests.h"
@implementation MultiVueTests
- (void)setUp
{
[super setUp];
// Set-up code here.
}
- (void)tearDown
{
// Tear-down code here.
[super tearDown];
}
- (void)testExample
{
STFail(@"Unit tests are not implemented yet in MultiVueTests");
}
可以为这个文件中的所有测试添加构造函数吗?
*编辑:* 在我的情况下,它是测试 webService 调用的结果。在构造函数中,我调用 webService 并且每个测试都测试答案。但是如果我在 setUp 中调用 webService,它会为每个测试调用。
谢谢