ios - 在 XCTestCase 中对类方法进行单元测试
<p><p>我目前开始在我的项目中编写一些单元测试。但是,似乎我遇到了一些问题:</p>
<pre><code>- (void)testThatItIsValidNumber
{
BOOL result1 = ;
BOOL result2 = ;
BOOL result3 = ;
BOOL result4 = ;
XCTAssertFalse(result1);
XCTAssert(result2);
XCTAssertFalse(result3);
XCTAssert(result4);
}
</code></pre>
<p>这给了我一个错误:</p>
<blockquote>
<p>caught "NSInvalidArgumentException", "+: unrecognized selector sent to class 0x1069448e0"</p>
</blockquote>
<p>任何人都可以指导我正确的方式吗?</p>
<p>编辑:</p>
<pre><code>+ (BOOL)isValidNumber:(NSString *)value {
const char *cvalue = ;
unsigned long len = strlen(cvalue);
for (int i = 0; i < len; i++) {
if(!isNumber(cvalue)){
return FALSE;
}
}
return TRUE;
}
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>确保您的类别已添加到您的测试目标中,否则它将无法在您的测试中使用。 </p>
<p>为此,只需从文件导航器中选择您的类(class),然后按右侧的文档检查器。在 Target members 部分,检查您的测试目标。</p></p>
<p style="font-size: 20px;">关于ios - 在 XCTestCase 中对类方法进行单元测试,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/32355204/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/32355204/
</a>
</p>
页:
[1]