1

I want to add some hints to my build, to run certain tests "first" without re-running them later.

  1. Simply add Class names to a "priority" string in an input parameter to my test task, or

  2. Have JUnit's testers smart enough to remember/persist failing test class names, so that the next time around the builder runs those first.

What is the most idiomatic way of doing this in Ant?

NobodyNada
  • 7,529
  • 6
  • 44
  • 51
jayunit100
  • 17,388
  • 22
  • 92
  • 167

1 Answers1

2

The following tools might help you to achieve the desired JUnit test execution order, but they depend on Eclipse usage:

  1. Continuous Testing for Eclipse (CT-Eclipse)
  2. JUnit Max
  3. infinitest

I have not used any of those tools, and I have no Ant-only solution.

You might consider these related posts:

Community
  • 1
  • 1