Xcode 4.5 command line unit testing

后端 未结 4 698
长发绾君心
长发绾君心 2020-12-07 10:51

Having an issue since updating to Xcode 4.5 when running my unit tests via command line. The following is the output i\'m seeing when i try to run my tests

U         


        
4条回答
  •  天命终不由人
    2020-12-07 11:10

    Just thought I should also share what I did for a solution to this issue. I followed the solution outlined in https://stackoverflow.com/a/10823483/666943 but converted the ruby script to shell. At the end I basically installed ios-sim via homebrew and replace the Run Script in the Build Phases of my Test target with the following:

    if [ "$RUN_UNIT_TEST_WITH_IOS_SIM" = "YES" ]; then
        test_bundle_path="$BUILT_PRODUCTS_DIR/$PRODUCT_NAME.$WRAPPER_EXTENSION"
        ios-sim launch "$(dirname "$TEST_HOST")" --setenv DYLD_INSERT_LIBRARIES=/../../Library/PrivateFrameworks/IDEBundleInjection.framework/IDEBundleInjection --setenv XCInjectBundle="$test_bundle_path" --setenv XCInjectBundleInto="$TEST_HOST" --args -SenTest All "$test_bundle_path"
        echo "Finished running tests with ios-sim"
    else
        "${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests"
    fi
    

    To start the test now I pass in the argument RUN_UNIT_TEST_WITH_IOS_SIM=YES e.g.

    xcodebuild -workspace MyApp.xcworkspace -scheme MyAppTests -sdk iphonesimulator -configuration Debug clean build RUN_UNIT_TEST_WITH_IOS_SIM=YES
    

提交回复
热议问题