Re: "incubating" tests

2009-12-22 Thread Ben Lidgey
Or use the excludes config of the surefire plugin to exclude those tests in an incubating phase, then when they grow up to be proper tests remove the name from the surefire plugin config. See http://maven.apache.org/plugins/maven-surefire-plugin/examples/inclusion-exclusion.html Ben On 22 Dec

Re: "incubating" tests

2009-12-22 Thread Frederic Camblor
I'm lovin this solution (looks like I forgotten the KISS principle this case ... :-)) Thanks Frédéric On Tue, Dec 22, 2009 at 3:46 PM, Stephen Connolly < stephen.alan.conno...@gmail.com> wrote: > Don't have your tests end in Test or TestCase or start with Test. That way > you can keep them in sr

Re: "incubating" tests

2009-12-22 Thread Stephen Connolly
Don't have your tests end in Test or TestCase or start with Test. That way you can keep them in src/test/java and they will be compiled, but surefire will not execute them 2009/12/22 Frederic Camblor > Hi all ! > > I'm facing a problem which looks simple but I've not succeeded resolving it > yet

"incubating" tests

2009-12-22 Thread Frederic Camblor
Hi all ! I'm facing a problem which looks simple but I've not succeeded resolving it yet :-) I'd like to create "incubation tests" in my project. "incubation tests" are : - part of tests hierarchy, but dissociated with test classes (that is to say, I will locate them in something like src/incuba