最佳答案
在一个新的项目中,我有这个简单的测试
#import <XCTest/XCTest.h>
#import "ViewController.h"
@interface ViewControllerTests : XCTestCase
@end
@implementation ViewControllerTests
- (void)testExample
{
// Using a class that is not in the test target.
ViewController * viewController = [[ViewController alloc] init];
XCTAssertNotNil(viewController, @"");
}
@end
H 是测试目标的 没有部分,但它编译并运行测试时没有任何问题。
我认为这是因为应用程序首先被构建(作为一个依赖项) ,然后才是测试。然后,链接器会计算出 ViewController 类是什么。
但是,在一个较老的项目中,使用完全相同的测试和 ViewController 文件,构建在链接器阶段失败:
Undefined symbols for architecture i386: "_OBJC_CLASS_$_ViewController", referenced from: objc-class-ref in ViewControllerTests.o
即使创建了新的 XCTest 单元测试目标,也会出现此链接器错误。
为了解决这个问题,可以在应用程序和测试目标中同时包含源代码(在上图中的两个框中打勾)。这会导致在模拟器的系统日志中出现重复符号的构建警告(打开模拟器并按 cmd-/查看此文件) :
Class ViewController is implemented in both [...]/iPhone Simulator/ [...] /MyApp.app/MyApp and [...]/Debug-iphonesimulator/LogicTests.octest/LogicTests. One of the two will be used. Which one is undefined.
这些警告有时会引起以下示例所示的问题:
[viewController isKindOfClass:[ViewController class]]; // = NO
// Memory address of the `Class` objects are different.
NSString * instanceClassString = NSStringFromClass([viewController class]);
NSString * classString = NSStringFromClass([ViewController class]);
[instanceClassString isEqualToString:classString]; // = YES
// The actual class names are identical
因此,问题在于旧项目中的哪些设置要求将应用程序源文件包含在测试目标中?
在工作项目和非工作项目之间:
Ld
开头的命令)没有区别。