I am using UITest to test a C object application, using quick for tests.
Xcode 7.3, sim 9.3
Each test case calls XCUIApplication.launch (), which kills any running application by sending SIGKILL.
Xcode treats this as a failure - invoking a debugger on main.m To continue working with the test package, just click the "Continue" button in the debugger.
After continuing, my journal says:
Message from debugger: Terminated due to signal 9
This situation is frustrating because it happens after 1/4 of my test cases. Due to the fact that I lost focus on the document, which I edit and call, so that my test suite hangs until I hit.
Is there any way around this?
source share