2

我有一个名为 CarouselWithXmlTests 的单元测试类。我有一个测试用例。如果我每次输入测试用例失败或测试用例成功的数据,它都会抛出 0 个测试用例已测试的消息。我有以下代码有什么遗漏吗?

-(void)checkTheArrayForNull
{
    viewController.temp=@"c";
    viewController.buttonCount=1;
    [viewController goButton:self];
    STAssertNotNil(viewController.setUpArray,@"set up Array is not nil");

}

并在 o/p 中有以下消息:

Test Suite 'CarouselWithXmlTests' started at 2012-05-17 10:23:55 +0000
Test Suite 'CarouselWithXmlTests' finished at 2012-05-17 10:23:55 +0000.
 Executed 0 tests, with 0 failures (0 unexpected) in 0.000 (0.000) seconds
4

1 回答 1

1

更改您的方法名称,它必须test以作为测试用例运行

-(void)testCheckTheArrayForNull
{
    viewController.temp=@"c";
    viewController.buttonCount=1;
    [viewController goButton:self];
    STAssertNotNil(viewController.setUpArray,@"set up Array is not nil");

}
于 2012-05-17T10:36:10.683 回答