SpeedLog icon indicating copy to clipboard operation
SpeedLog copied to clipboard

Trying to use it in XCTestCase

Open Osahamed opened this issue 7 years ago • 1 comments

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'

Osahamed avatar Sep 04 '18 18:09 Osahamed

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.

mariancerny avatar Sep 28 '18 17:09 mariancerny