我为我的应用制作了测试目标。它有依赖性,如
import XCTest
import RxSwift
import RxCocoa
import RxBlocking
@testable import MyApp
我的Podfile看起来像
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
def shared_pods
pod 'RxSwift', '~> 2.0'
pod 'RxCocoa', '~> 2.0'
end
target 'Mobium-ios' do
shared_pods
end
target 'Mobium-ios-tests' do
shared_pods
pod 'RxBlocking', '~> 2.0'
pod 'RxTests', '~> 2.0'
end
但是,在我的测试中,我无法导入RxBlocking
答案 0 :(得分:0)
'构建测试'解决了这个问题。