gpt4 book ai didi

unit-testing - iOS 单元测试 UIViewControllers

转载 作者:行者123 更新时间:2023-11-28 17:51:25 25 4
gpt4 key购买 nike

我几乎所有的单元测试都包含以下内容

- (void)setUp {
[super setUp];
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
self.viewController = [storyboard instantiateViewControllerWithIdentifier:@"ViewController"];
[self.viewController performSelectorOnMainThread:@selector(loadView) withObject:nil waitUntilDone:YES];
}

我认为这让我的测试很慢。这是一种常见的做法吗?我应该如何以最好的方式测试我的 ViewController?

最佳答案

这绝对没问题,因为在 Apple 示例文档中,他们也使用上述逻辑来获取对测试对象的引用。

见下图,它来自示例 Apple 代码 enter image description here

关于unit-testing - iOS 单元测试 UIViewControllers,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33344045/

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