我在Podfile
文件
target "A" do
pod "Pod1"
target "ATests" do
pod "Pod2"
end
end
target "B" do
pod "Pod3"
target "BTests" do
pod "Pod4"
end
end
target "SharedTests" do
pod "Pod5"
end
如何将目标ATests
和BTests
与SharedTests
但不是A
和B
相关联。希望使用link_with
这样的东西,但这似乎早已不复存在。
我的目标是在我的应用程序中的测试目标之间共享代码,而不一定是pod。