Objective C test class using Swift code

回眸只為那壹抹淺笑 提交于 2019-12-20 12:04:13

问题


I have a swift protocol IModelIdProvider in the MyProjectName folder. I have created an objective-c unit test class named RemoteModelFactoryTest in the MyProjectNameTests folder. To do some tests, RemoteModelFactoryTest must implement the IModelIdProvider protocol.

When I #import "MyProjectName-Swift.h" to use my swift protocol in my objective-c class, I get a file not found.

If I change the #import instruction to #import "MyProjectNameTests-Swift.h", the header is found but not my protocol (it's defined in the MyProjectName project, not in the MyProjectNameTests project).

Is there something special to do in the *Tests projects to use Swift code ?


回答1:


I know its extra hacky and everything, but what I did and it worked was to copy public headers from generated "Project-Swift.h" and paste whats needed to .m file of test.

So I copied something like this:

SWIFT_CLASS("_TtC10Inventorum11ImageEntity")
@interface ImageEntity : NSObject <FICEntity>
@property (nonatomic, copy) NSString * imageID;
@property (nonatomic) NSURL * retinaImageURL;
@property (nonatomic) NSURL * nonRetinaimageURL;
@property (nonatomic, readonly) NSURL * imageURL;
@property (nonatomic, readonly, copy) NSString * UUID;
@property (nonatomic, readonly, copy) NSString * sourceImageUUID;
@property (nonatomic) RACSignal * rac_signalForImage;
- (instancetype)init OBJC_DESIGNATED_INITIALIZER;
- (NSURL *)sourceImageURLWithFormatName:(NSString *)formatName;
- (FICEntityImageDrawingBlock)drawingBlockForImage:(UIImage *)image withFormatName:(NSString *)formatName;
- (void)objc_setType:(NSString *)type;
@end

And on top of this I have also copied all the macros for SWIFT_CLASS etc. My tests are building and passing testing Swift code.

BTW. Dont forget to put public on tested classes and methods in Swift.




回答2:


To import a set of Objective-C files in the same framework target as your Swift code, you’ll need to import those files into the Objective-C umbrella header for the framework.

To import Swift code into Objective-C from the same framework

Under Build Settings, in Packaging, make sure the Defines Module setting for that framework target is set to Yes. Import the Swift code from that framework target into any Objective-C .m file within that framework target using this syntax, and substituting the appropriate names...

https://developer.apple.com/library/prerelease/ios/documentation/swift/conceptual/buildingcocoaapps/MixandMatch.html#//apple_ref/doc/uid/TP40014216-CH10-XID_75



来源:https://stackoverflow.com/questions/24367982/objective-c-test-class-using-swift-code

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!