SpeedLog
SpeedLog copied to clipboard
Trying to use it in XCTestCase
Thanks for the Library, I've installed it using Cocoa Pods but when I try to use it in the XCTestCase, import SpeedLog .. .. SpeedLog.print
I get the following error No such module 'SpeedLog'
Adding the test target into the Podfile similar to this sample should help you:
target 'MyApp' do
pod 'SpeedLog'
target 'MyAppTests' do
inherit! :search_paths
end
end
Then run pod install.