Re: Help executing both unit and integration tests in a single artifact

2007-01-10 Thread Mark Hobson
ecute "mvn integration-test", it says that there are no > tests to run. I've also tried "src/it/java" Have I named the directory > incorrectly? What do I need to do to get integration tests running? > > Thanks, > Todd > > -- View this message in c

Re: Help executing both unit and integration tests in a single artifact

2007-01-10 Thread franz see
ctory > incorrectly? What do I need to do to get integration tests running? > > Thanks, > Todd > > -- View this message in context: http://www.nabble.com/Help-executing-both-unit-and-integration-tests-in-a-single-artifact-tf2949717s177.html#a8255316 Sent from the Maven - Users mail

Re: Help executing both unit and integration tests in a single artifact

2007-01-09 Thread Kalle Korhonen
ys that there are no > >> tests to run. I've also tried "src/it/java" Have I named the directory > >> incorrectly? What do I need to do to get integration tests running? > >> > >> Thanks, > >> Todd > >> > >> > >

Re: Help executing both unit and integration tests in a single artifact

2007-01-09 Thread Wayne Fay
gt;> incorrectly? What do I need to do to get integration tests running? >> >> Thanks, >> Todd >> >> > > ------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-

Re: Help executing both unit and integration tests in a single artifact

2007-01-09 Thread drekka
>> tests to run. I've also tried "src/it/java" Have I named the directory >> incorrectly? What do I need to do to get integration tests running? >> >> Thanks, >> Todd >> >> > > -----------------------

Re: Help executing both unit and integration tests in a single artifact

2007-01-09 Thread Wayne Fay
There are various integration tests run as part of the Maven project build itself, which of course uses Maven to do the build and test etc. I'd take a look at their poms and how they've structured the integration test directories etc to see how you might be able to apply it to your own project.

Help executing both unit and integration tests in a single artifact

2007-01-09 Thread Todd Nine
Hi all, I have a project that has some utility classes, as well as integration classes. The utility classes are mostly for parsing legacy data, so these can be tested with Unit tests. I want to do a full black box test with an integration test. I have the following source directory src/main/j