gpt4 book ai didi

ios - XCTestCase for ios的XCTestSuite

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

我需要测试一个 UIViewController,它的行为取决于给它的参数(控件是根据网络服务调用在 viewDidLoad 中动态实例化的)。

我将能够运行相同的 XCTestCase 派生类并注入(inject)测试上下文。我以为我会为此使用 XCTestSuite 但事实并非如此,因为 XCTestSuite 是一套 XCTest 而不是 XCTestCase.

基本上我想做的是:

XCTestCaseSuite* suite = [[XCTestCaseSuite alloc] init];
for (Condition* condition in conditions) {
MyTestCase* case = [[MyTestCase alloc] initWithCondition:condition];
[suite addTestCase:case];
}
[suite runTest];

有什么办法吗?谢谢!

最佳答案

通过查看代码,我能够实现我想做的事情 https://github.com/michalkonturek/XCParameterizedTestCase

具体来说,我复制了 https://github.com/michalkonturek/XCParameterizedTestCase/blob/master/Source/XCParameterizedTestCase.m 中的机制并且能够做我想做的事。

此方法的一个缺点是同一测试的所有实例都以相同的方式报告,并且无法知道例如哪个特定实例失败。为了避免这种情况,我添加了继承自 XCTestCase 基类的动态类创建:

// create a dynamic class so that reporting is good
NSString* testClassName = [NSString stringWithFormat:@"%@Test", [condition.description capitalizedString]];
Class testClass = objc_allocateClassPair([MyTestCase class], [testClassName UTF8String], 0);
objc_registerClassPair(testClass);

然后你可以实例化每个测试用例类

XCTestCase *test = [[NSClassFromString(testClassName) alloc] initWithInvocation:invocation
forCondition:condition];

我将尝试在一个非常通用的 XCParameterizedTestCase 类中实现它...

关于ios - XCTestCase for ios的XCTestSuite,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32860212/

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