In Maven2, is there a way to run a particular TestCase rather than all of them when you run "mvn test"?
Like for example, I'd like to run something like: "mvn test -testcase= org.somepackage.MyTestCase". I'm wondering because it would be nice while I'm doing development I could run a particular TestCase which I'm working on that I haven't even checked in yet. I want to avoid running all the tests every single time as I tweak MyTestCase and the class it unit tests. Thanks, Christian
