Re: Maven2/TestApp/Classpath testing and structuring issues

2006-08-17 Thread Paul Michael Reilly
Arnaud Bailly [EMAIL PROTECTED] writes: Paul Michael Reilly [EMAIL PROTECTED] writes: I use the Maven 2 quick start scaffold for this project so far. In AppTest, I spawn the app during setup via something like: Runtime.getRuntime().exec( java -cp the:class:path com.foo.App ).

Re: Maven2/TestApp/Classpath testing and structuring issues

2006-08-17 Thread Arnaud Bailly
Paul Michael Reilly [EMAIL PROTECTED] writes: You qualify. :-) Wait lurking some times on this list and you will find real maven hackers :-) The first testing tier will be based on the classes and will be mostly traditional unit testing, but I will observe that unit testing has never

Maven2/TestApp/Classpath testing and structuring issues

2006-08-16 Thread Paul Michael Reilly
I am building a long lived Java application (as opposed to a short lived filter application) that is spawned as a subprocess of some other application (likely not a JVM). Commands and responses are streamed via System.in and System.out, fwiw. I use the Maven 2 quick start scaffold for this

Re: Maven2/TestApp/Classpath testing and structuring issues

2006-08-16 Thread Arnaud Bailly
Paul Michael Reilly [EMAIL PROTECTED] writes: I use the Maven 2 quick start scaffold for this project so far. In AppTest, I spawn the app during setup via something like: Runtime.getRuntime().exec( java -cp the:class:path com.foo.App ). ... avoid. So, being new to the Maven2 world, I'm