如何在静态objc库中使用XCTestcase

时间:2018-12-25 11:47:31

标签: objective-c xcode static-libraries xctestcase

我试图将XCTestCase添加到用ObjC编写的静态库中。但是我得到了这个错误

// Disable errors and get current error reporting level
$err = error_reporting(0);

/* here goes you buggy code */

// Set the default error reporting level
error_reporting($err);

我不明白为什么在我的静态库中找不到XCTestCase或为什么静态库不支持XCTestCase?

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

经过长时间的讨论之后,我才发现这是与测试目标的“构建设置”中的搜索路径有关的配置问题(搜索路径= OCMockitoIOS和GHUnitTest)。 为了解决该问题,我将搜索路径清除为以下屏幕: enter image description here