RE: Maven/Junit: printing test failure/error stack trace to stdout

2004-09-23 Thread Helck, Christopher
PROTECTED] Sent: Wednesday, September 22, 2004 4:38 PM To: Maven Users List Subject: Re: Maven/Junit: printing test failure/error stack trace to stdout try this: maven -Djunit.usefile=false test:test or put the following line in your project.properties file: junit.usefile=false HTH, john Omair

RE: Maven/Junit: printing test failure/error stack trace to stdout

2004-09-23 Thread Charles Daniels
] Sent: Thursday, September 23, 2004 11:40 AM To: Maven Users List Subject: RE: Maven/Junit: printing test failure/error stack trace to stdout I think it is 'maven.junit.usefile' and not 'junit.usefile'. When I try it maven -Dmaven.junit.usefile=false test Works fine. Perhaps this should

Re: Maven/Junit: printing test failure/error stack trace to stdout

2004-09-23 Thread John Casey
about this same problem for a while. Thanks. -Original Message- From: John Casey [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 22, 2004 4:38 PM To: Maven Users List Subject: Re: Maven/Junit: printing test failure/error stack trace to stdout try this: maven -Djunit.usefile=false

Maven/Junit: printing test failure/error stack trace to stdout

2004-09-22 Thread Omair-Inam Abdul-Matin
Is it possible to print out the stack trace for tests that fail or raise an error. I would like more details that a failure/error count. Omair - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Maven/Junit: printing test failure/error stack trace to stdout

2004-09-22 Thread Moritz Petersen
Hi Omair, two suggestions: 1.) All test reports are placed into target/test-reports. There you'll find more information about the tests. 2.) Use the JUnit plugin of your favourite IDE or the JUnit testrunner during development. Using Maven for each test has too long development cycles. Those

Re: Maven/Junit: printing test failure/error stack trace to stdout

2004-09-22 Thread John Casey
try this: maven -Djunit.usefile=false test:test or put the following line in your project.properties file: junit.usefile=false HTH, john Omair-Inam Abdul-Matin wrote: Is it possible to print out the stack trace for tests that fail or raise an error. I would like more details that a failure/error