You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In file included from /Users/fmartin91/Projects/test/test-ios/Pods/RKKiwiMatchers/Code/RKMappingTestMatcher.m:21:
In file included from /Users/fmartin91/Projects/test/test-ios/Pods/RKKiwiMatchers/Code/RKMappingTestMatcher.h:22:
/Users/fmartin91/Projects/test/test-ios/Pods/Kiwi/Classes/Core/Kiwi.h:9:9: fatal error: 'SenTestingKit/SenTestingKit.h' file not found
#import <SenTestingKit/SenTestingKit.h>
^
1 error generated.
I'm having trouble when running my tests with RKKiwiMatchers. Im using cocoapods for managing library's. Can't figure out why it can't find the SenTestingKit binary.
The text was updated successfully, but these errors were encountered:
Here's an example of how I have pulled in the library in one of my projects:
target 'TAFlightsUnitTests', :exclusive => true do
pod 'OCMock', '~> 2.2.0'
pod 'Expecta', '~> 0.2'
pod 'Kiwi', '~> 2.2.0'
pod 'RKKiwiMatchers', :git => 'https://github.com/RestKit/RKKiwiMatchers'
pod 'RestKit/Testing', :path => 'Libraries/RestKit'
end
Changed my target name to loovinTests in case spacing was causing any issue but didn't have luck.
New Pod file.
target :loovinTests, :exclusive => true do
pod 'RKKiwiMatchers', :git => 'https://github.com/RestKit/RKKiwiMatchers'
pod 'Kiwi', '~> 2.2.0'
pod 'RestKit/Testing'
end
I'm having trouble when running my tests with RKKiwiMatchers. Im using cocoapods for managing library's. Can't figure out why it can't find the SenTestingKit binary.
The text was updated successfully, but these errors were encountered: