我正在尝试使用 xcodebuild 运行我的 unit 和 ui 测试,例如:
$ xcodebuild -scheme "MyAppScheme" -destination 'platform=iOS Simulator,name=iPhone 7 Plus,OS=11.0' build test CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
问题是模拟器没有启动,而是随意运行。
我知道 XCode 9 中引入了所谓的“ headless 模拟器”。关于如何使用 xcodebuild 运行测试并启动模拟器的任何想法?
Best Answer-推荐答案 strong>
据我所知,没有任何选项可以让您在非 headless 模拟器上运行测试。
但是,如果模拟器已经启动,则测试将在该模拟器上运行,而不是在 headless 模拟器上运行。所以你可以先启动模拟器,然后运行测试:
$ 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
关于ios - 在 XCode 9 中启动模拟器(非 headless ),我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/46546760/
|