gpt4 book ai didi

iphone - 在 objective-c 中测试

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:51:23 24 4
gpt4 key购买 nike

我有一个名为 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

最佳答案

更改你的方法名,它必须以test开头才能作为测试用例运行

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

}

关于iphone - 在 objective-c 中测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10633937/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com