I am newbie to ios world and am figuring out how to run the tests from command line.
I have the APP.app and TEST.xctest (basically KIF tests).
I am not able to figure out how to run these tests on the app (on simulator and device).
I tried using xcodebuild test with scheme set as TEST but to no use.
I was able to use xcrun commands to install the .app on the simulator.
xcrun instruments -w "iPhone 5 (8.0 Simulator)"
xcrun simctl install booted <app path>
How do I run the Xctests now on the simulator ?
Any help is greatly appreciated.