On Mon, 18 Aug 2003 23:54:11 -0500, Jefferson K. French <[EMAIL PROTECTED]> wrote:
If you mean how can you run a single JUnit test case, do this:
Sorry, I was not clear about this point. I mean run a main method (public static void main(String[])).
But the tips about the test plugin are useful. Thanks a lot.
maven -Dtestcase=<classname> test:single
I think <classname> needs to be fully qualified. To run multiple test cases, do this:
maven -Dtestmatch=<pattern> test:match
where <pattern> is something like "Test*Parser" or some other pattern that matches your test names.
I don't think there is a way to run a single test method within a single test case.
Good question. I'll search for the answer.
Thanks again,
[]'s Jonas
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
