菜鸟教程小白 发表于 2022-12-13 11:11:30

ios - XCTestCase for ios 的 XCTestSuite


                                            <p><p>我需要测试一个 <code>UIViewController</code>,它的行为取决于给它的参数(控件是基于 web 服务调用在 <code>viewDidLoad</code> 中动态实例化的)。</p>

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

<p>基本上我想做:</p>

<pre><code>XCTestCaseSuite* suite = [ init];
for (Condition* condition in conditions) {
MyTestCase* case = [ initWithCondition:condition];
;
}
;
</code></pre>

<p>有没有办法做到这一点?
谢谢!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>通过查看代码,我能够实现我想做的事情
<a href="https://github.com/michalkonturek/XCParameterizedTestCase" rel="noreferrer noopener nofollow">https://github.com/michalkonturek/XCParameterizedTestCase</a> </p>

<p>具体来说,我复制了 <a href="https://github.com/michalkonturek/XCParameterizedTestCase/blob/master/Source/XCParameterizedTestCase.m" rel="noreferrer noopener nofollow">https://github.com/michalkonturek/XCParameterizedTestCase/blob/master/Source/XCParameterizedTestCase.m</a> 中的机制。并且能够做我想做的事。</p>

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

<pre><code>// create a dynamic class so that reporting is good
NSString* testClassName = ];
Class testClass = objc_allocateClassPair(, , 0);
objc_registerClassPair(testClass);
</code></pre>

<p>然后你可以实例化每个测试用例类</p>

<pre><code>XCTestCase *test = [ initWithInvocation:invocation
                                                                  forCondition:condition];
</code></pre>

<p>我将尝试在一个非常通用的 <code>XCParameterizedTestCase</code> 类中实现它...</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - XCTestCase for ios 的 XCTestSuite,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32860212/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32860212/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - XCTestCase for ios 的 XCTestSuite