Implementing Unit Testing with iOS

后端 未结 9 1078
轮回少年
轮回少年 2020-12-04 10:40

I\'ve followed this tutorial to setup unit testing on my app when I got a little stuck.

At bullet point 8 in that tutorial it shows this image, which is what I shou

9条回答
  •  没有蜡笔的小新
    2020-12-04 11:16

    Double click 'Run script' under 'Targets'/'Your script target name' then type

    # Run the unit tests in this test bundle. 
    "${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests" 1> /tmp/RunUnitTests.out
    

    Basically you need to append

    1> /tmp/RunUnitTests.out
    

    to what is already there

提交回复
热议问题