huliganta
huliganta

Reputation: 39

Is there any kind of order for xcode 8 to execute UI Test cases?

With xcode 7 there was and alphabetic or numeric order of executing test cases when starts multiple test cases. E.g.

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.

Upvotes: 3

Views: 1409

Answers (1)

Maxim Kholyavkin
Maxim Kholyavkin

Reputation: 4573

  1. Tests should be able to work in random order.
  2. According this answer: test order from command line and from Xcode are different.

Upvotes: 1

Related Questions