I would like to know if there is any way to tell Xcode to run unit tests in a specified order. I mean not in a same XCTestCase class file, but between all the class file.
its ordered by function names letter orders, doesn't matter how you order it in your code. e.g.:
-(void)testCFun(){}; -(void)testB2Fun(){}; -(void)testB1Fun(){};
the actual execute order is :