Issue #541
Scheme action
A scheme, either for app or test, consists of actions
Run
Used when Cmd+R. The executable specifies which app target to run
Test
Used when Cmd+U. The tests specifies which test target to run
Test target recognises app targets via Test application and target dependency
When specify test scheme, we are specifying Test action in test scheme, which builds test target, and by dependency, builds app target, then run test action in test scheme, which is the UITest
xcodebuild -project TestApp.xcodeproj -scheme TestAppUITests test
Scheme build settings
Inspect build settings from test scheme does not work, need to specify app scheme
xcodebuild -workspace Animal.xcworkspace -scheme CatUITests -showBuildSettings