The JUnit view in Eclipse seems to order the tests randomly. How can I order them by class name?
|
1
|
|||
|
|
|
As Gary said in the comments:
I did look but there's no hint of a functionality to sort these names. I would suggest a change request to the JUnit plugin, but I don't think, that there are lot of people using this thing, so: DIY. I would like to see the solution if you modify the plugin code. |
||||
|
|
|
If you really need hard dependency between your JUnit test, try JExample extension
You can install it in Eclipse, for Junit4.4 or 4.5.
As mentioned in this IBM article "In pursuit of code quality: JUnit 4 vs. TestNG":
So beware: if you retain any solution for ordering your JUnit tests the way you want... you need to think if that solution support a "skip" feature in order to allow other tests to proceed even if one of them fails. |
||||||
|
|
|
mark wrote:
mark is right. But you cannot sort your unit test. It's not allowed to speculate about the order of execution. Unit tests have to be built independently and it's random, how they are called by the UnitRunner. In most cases, the test methods are sorted alphabetically. The classes are random. Try to use a TestSuite to order your tests. |
|||
|
|
|
it orders them base on execution time, maybe you should sort your methods? source/sort members |
||
|
|
