Xcode XCTestCase根本没有运行

时间:2015-09-23 14:38:19

标签: ios xcode xctest

我在xcode中有一些奇怪的问题。

我有项目,我决定添加一些单元测试。

我创建了新的测试包并将我的应用添加为测试目标。 只认为我改为自动生成的代码是:

Build Settings / Arhitectures / Build Active Arhitecture Only  : NO

我添加了新测试:

- (void)testExample {
    XCTAssertTrue(YES, @"OK");
}

当我运行测试时,它构建正常,它表示运行测试,但测试失败 enter image description here

但是你可以看到没有测试实际上正在运行。

有人知道为什么吗?

编辑:

我已将测试包添加到架构中。

enter image description here

马尔科

1 个答案:

答案 0 :(得分:1)

有几点意见:

  • 失败的测试位于" BIView Mobile New VersionTests"内部,而不是" ModelUnitTest"内的测试。

  • 关于" ModelUnitTest"包含在测试中,您必须编辑方案并查看"测试"设置:

    tests settings in scheme

    确保您的" ModelUnitTest"目标包含在该列表中。