I'm working with JUnit. I create a Request object that receives a list of classes that have tests.
When I execute a sorter on Request and then run it, it appears the tests are sorted but only contrary to the class in which they originally where!
Example:
Class 1 with test A,D,C and Class 2 with test A,I,H Given to the request, sorted alpabetically execute in this order:
Test A, Test C, Test D, Test A, Test H, Test I
instead of AACDHI.