RE: [exec] Use of System.out in unit tests

2011-02-09 Thread Gary Gregory
> -Original Message- > From: Siegfried Goeschl [mailto:sgoes...@gmx.at] > Sent: Wednesday, February 09, 2011 17:00 > To: Commons Developers List > Subject: Re: [exec] Use of System.out in unit tests > > Hi folks, > > I understand your motivation but the output

Re: [exec] Use of System.out in unit tests

2011-02-09 Thread Siegfried Goeschl
Hi folks, I understand your motivation but the output is helpful in understanding problems when the regression tests are executed on an arbitrary machine - assume that you have an exotic server where you would like to test commons-exec without development tools. The output is the only hint I

Re: [exec] Use of System.out in unit tests

2011-02-03 Thread Jörg Schaible
sebb wrote: > On 3 February 2011 21:02, Gary Gregory > wrote: >> Hi All, >> >> I see a lot of noise on the console when running [exec] unit tests (from >> Maven, Eclipse, and so on.) >> >> I would like to remove calls to System.out from the unit tests. >> >> IMO, unit tests should assert all they

Re: [exec] Use of System.out in unit tests

2011-02-03 Thread sebb
On 3 February 2011 21:02, Gary Gregory wrote: > Hi All, > > I see a lot of noise on the console when running [exec] unit tests (from > Maven, Eclipse, and so on.) > > I would like to remove calls to System.out from the unit tests. > > IMO, unit tests should assert all they need and put any error

[exec] Use of System.out in unit tests

2011-02-03 Thread Gary Gregory
Hi All, I see a lot of noise on the console when running [exec] unit tests (from Maven, Eclipse, and so on.) I would like to remove calls to System.out from the unit tests. IMO, unit tests should assert all they need and put any error information in assert messages, not the console. Thoughts?