I use the following command to run unit tests in my app:
xcodebuild -project myapp.xcodeproj -scheme "myapp Simulator" -sdk iphonesimulator7.1 CONFIGURATION_BUILD_DIR='build' clean test
From logs it looks like the the unit tests are not even executed , but the result says ** BUILD SUCCEEDED **
I have updated command line tools as well. Not sure how to get the unit tests executed. Is there something i need to change in the command?