我正在尝试使用unit
运行我的ui
和xcodebuild
测试,例如:
$ xcodebuild -scheme "MyAppScheme" -destination 'platform=iOS Simulator,name=iPhone 7 Plus,OS=11.0' build test CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
问题是模拟器没有开始,而是正在无心地运行。
我知道所谓的#34;无头模拟器"在XCode 9中介绍了如何使用xcodebuild
运行测试并启动模拟器的任何想法?
答案 0 :(得分:4)
据我所知,没有选项允许你在非无头模拟器上运行测试。
但是,如果已启动模拟器,则测试将在该模拟器上运行,而不是在无模拟器上运行。因此,您可以先启动模拟器,然后运行测试:
$ open /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app && xcodebuild -scheme "MyAppScheme" -destination 'platform=iOS Simulator,name=iPhone 7 Plus,OS=11.0' build test CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO