Re: Extending JUnit Ant tasks

2007-06-11 Thread Steve Loughran
Rebhan, Gilbert wrote: -Original Message- From: Steve Loughran [mailto:[EMAIL PROTECTED] Sent: Monday, June 11, 2007 12:41 PM To: Ant Users List Subject: Re: Extending JUnit Ant tasks Hi, /* well, sounds like you have to write a new xmllogger. One problem with a streaming

RE: Extending JUnit Ant tasks

2007-06-11 Thread Rebhan, Gilbert
-Original Message- From: Steve Loughran [mailto:[EMAIL PROTECTED] Sent: Monday, June 11, 2007 12:41 PM To: Ant Users List Subject: Re: Extending JUnit Ant tasks Hi, /* well, sounds like you have to write a new xmllogger. One problem with a streaming/flushing logger is that if the

Re: Extending JUnit Ant tasks

2007-06-11 Thread Steve Loughran
Steve Loughran wrote: The alternative is for ant to optionally register a signal handler (sun java only; would cause trouble on IDEs) and then to shut down more gracefully on termination. This is what smartfrog does, though since Java6 the javac compiler goes out of its way to tell us off for

Re: Extending JUnit Ant tasks

2007-06-11 Thread Steve Loughran
Rebhan, Gilbert wrote: Hi, -Original Message- From: Steve Loughran [mailto:[EMAIL PROTECTED] Sent: Monday, June 11, 2007 11:41 AM To: Ant Users List Subject: Re: Extending JUnit Ant tasks /* [ ... ] In them I show an XHTML output that gets streamed out... not only is it viewable

RE: Extending JUnit Ant tasks

2007-06-11 Thread Rebhan, Gilbert
Hi, -Original Message- From: Steve Loughran [mailto:[EMAIL PROTECTED] Sent: Monday, June 11, 2007 11:41 AM To: Ant Users List Subject: Re: Extending JUnit Ant tasks /* [ ... ] In them I show an XHTML output that gets streamed out... not only is it viewable without waiting for the

Re: Extending JUnit Ant tasks

2007-06-11 Thread Steve Loughran
Alex Ruiz wrote: Hello all, I've been trying to extend JUnit's report without success. The following are some questions/comments about what I couldn't accomplish: 1. Ant's org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter does not offer any support for extensibility. It wou