Thanks a lot so far. I've created MockServerSocket and now my code is able to reliably verify that a socket connection would be accept() ed by the...
5694
Eric Heikkila
ericheikkila
Sep 2, 2002 2:58 am
Not sure if I just left that out of the list I posted or if PMD missed it. I'll double-check next week. :) -Eric ... Date: Sat, 31 Aug 2002 12:38:38 -0700 ...
Java-based testing tools These tools are open source: http://www.bitmechanic.com/projects/maxq/ http://www.httpunit.org/ http://www.tagunit.org/ ...
5697
Vincent Massol
vmassol
Sep 3, 2002 8:29 am
Hi, JUnitDoc looks very cool. I have always wanted to implement it ... :-) Can someone give a pointer where it can be found and downloaded? Thanks -Vincent ......
5698
philipborlin@...
Sep 3, 2002 3:06 pm
I have been thinking about this a lot lately since we have some messy threading code in our gui. Our main problems are locking down objects while state...
5699
Mark Meyers
markm@...
Sep 4, 2002 8:23 am
Runtime's exec(...) returns a Process instance. With getInputStream() you can read the output of the Process, write it to System.out to see what is (not)...
5700
Francois Beausoleil
francois_bea...
Sep 5, 2002 1:42 am
Java Gui Builder, an XML based GUI building framework, has released version 0.5a. This release brings a menu implementation, and internal refactorings. You may...
5701
weitzman_d
Sep 5, 2002 3:25 am
The general issue of how to approach this sort of issue remains unsolved, but I sidestepped my own problem by passing the responsibilty of verifying the...
5702
Johannes Link
jlinkyh
Sep 5, 2002 7:14 am
... This might be a deceiving attitude at best. The Avalon project has a high code quality indeed, but as for Jakarta projects in general this does not hold. ...
5703
Sasi Kala
sasikala_jmk
Sep 5, 2002 6:00 pm
Hi, I am new to this group. I have a couple of questions on JUnit. 1. How to run the failed test cases and test suites in the second time. Is there any...
Enter your vote today! A new poll has been created for the junit group: Does the following sound like it is on topic and should be posted to the list? "This...
5707
Scott Stirling
jrun5
Sep 6, 2002 12:12 am
That was fun. I voted against it. Let us know the results, will you? I imagine most people will if they're like me -- I keep tabs on a number of news sites...
5708
Deepa Nadig
deepa.nadig@...
Sep 6, 2002 1:29 pm
Hi All, Please guide me on how to write test cases where the input to the test cases will come as element values from a xml file. Right now I am planning to...
5709
Vladimir Bossicard
vbossica
Sep 6, 2002 6:07 pm
... -- Vladimir Bossicard www.bossicard.com...
5710
gbsag
Sep 7, 2002 12:49 am
Hi I am new to using JUnit. Can anyone tell me if TestSuit executes your tests in parallel, is there anything in JUnit I can use to simulate parallel calls to...
5711
Jason Rogers
jacaetev
Sep 7, 2002 1:59 am
you can use JUnitPerf from www.clarkware.com -- it's simple and quick to add in. =jason On Fri, 2002-09-06 at 15:12, gbsag wrote: Hi I am new to using JUnit. ...
5712
Michael Silverstein
msilverstein@...
Sep 7, 2002 11:30 am
There's also a product called "Enhanced JUnit" that will run copies of your tests in parallel across threads, JVMs and machines. More info at: ...
5713
J. B. Rainsberger
nails762
Sep 7, 2002 6:06 pm
More to the point: testing with the file system is a bitch at the best of times. A common idea is to kill a folder on the file system after every test, in...
5714
neil_swingler
Sep 7, 2002 9:05 pm
I do the InputSource thing as well. If you really must use a real file then I can think of 2 methods. o Predefine your test xml in a file in the same package...
5715
Andrew Forward
andrewforwar...
Sep 7, 2002 9:37 pm
I am curious under what circumstances the file ssytem is too slow to clean up after itself? I have some code that crawls files and directories, so to test this...
5716
J. B. Rainsberger
nails762
Sep 8, 2002 3:15 pm
On a number of occasions I have written a TestCase where setUp() creates an object that uses the file system and tearDown() clears the entire tree used by that...
5717
Timothy Wall
twall@...
Sep 8, 2002 5:39 pm
In the cases where I *have* to use a file, the built-in java temp file generators work pretty well for getting a uniquely-built file every time....
5718
Neil Swingler
neil_swingler
Sep 8, 2002 8:05 pm
and deleteOnExit should be sufficient cleanup ... From: "Timothy Wall" <twall@...> To: <junit@yahoogroups.com> Sent: Sunday, September 08, 2002 7:39...
5719
Jonathan Gossage
jfgossage
Sep 9, 2002 12:29 pm
... From: "J. B. Rainsberger" <jbr@...> To: <junit@yahoogroups.com> Sent: Sunday, September 08, 2002 11:14 AM Subject: Re: [junit] test cases...
5720
J. B. Rainsberger
nails762
Sep 9, 2002 3:51 pm
Yes, but they don't appear to create directories, which was what I needed. *********** REPLY SEPARATOR *********** ... time. <snip /> J. B. Rainsberger, ...
5721
J. B. Rainsberger
nails762
Sep 9, 2002 3:51 pm
...unless I want clean up after each test and not each test run. *********** REPLY SEPARATOR *********** ... file ... time. <snip /> J. B. Rainsberger, ...
5722
J. B. Rainsberger
nails762
Sep 9, 2002 3:51 pm
My concurrency knowledge is less than it should be. Could you provide sample code for this? I assume you meant this: class MyTestFixture extends TestCase ...