With xcode 7 there was and alphabetic or numeric order of executing test cases when starts multiple test cases. E.g.
- test3()
- test9()
- test6()
- test5()
- test7()
- test4()
- test8()
These cases will be executed in order 3-4-5-6-7-8-9
Now with xcode 8 test cases seems to be started in random order. My question is: Is there a some setting or how to make this to to run test is some order.