objective c - Attempting to run multiple tests using Xcode's new UI testing fails -
when try run multiple ui tests @ same time in new xcode beta, fails after first test, error "ui testing failure: app state still not terminated" each test after first. got fix this?
i have faced same issue. seems that, @ least in case, application had never been terminated.
i solved putting following statement in setup()
method:
continueafterfailure = false
this should stop running test process after first failure.
Comments
Post a Comment