How do I control the order of execution of tests in Maven?
07:49 22 Aug 2012

I need to run tests in order. I fail to find this adequately documented anywhere. I would prefer to do this from command line. Something like

 mvn -Dtest=test1,test2,test3,test5 test

How do I do this?

testing maven