On 5 Nov 2009, at 11:10, Bertrand Delacretaz wrote:
Hi,
On Thu, Nov 5, 2009 at 10:12 AM, Ian Boston <[email protected]> wrote:
Is it possible to run just one of the tests in the launchpad/
testing project
?
I have tried mvn -Dtest=**/PrefixTest.java but I get a whole bunch
of errors
when the testing webapp doesnt start up.
Yes it's possible, but you need to start the Sling instance separately
- start one instance with mvn jetty:run, and the other with mvn test
and the test selectors.
Yes,
cd launchpad/testing
mvn jetty:run &
mvn test -Dtest=**/PrefixTest.java
works perfectly (well once I fix my code it will :) )
Thanks
Ian
See launchpad/testing/README.txt or catch me at ApacheCon!
-Bertrand