Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

junit · JUnit, the Java unit testing framework written by Kent Beck and Erich Gamma.

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 31224
  • Category: Java
  • Founded: Nov 6, 2000
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 5693 - 5722 of 24405   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
5693 weitzman_d Send Email Sep 1, 2002
7:01 pm
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 Send Email
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 ...
5695 thong_wearin_fireman
thong_wearin... Send Email
Sep 2, 2002
7:07 pm
http://www.pnsqc.org/conference/conference_home.htm 20th Annual Pacific Northwest Software Quality Conference Oregon Convention Center Portland, Oregon October...
5696 thong_wearin_fireman
thong_wearin... Send Email
Sep 2, 2002
7:09 pm
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 Send Email
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@... Send Email 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@... Send Email
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... Send Email
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 Send Email 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 Send Email
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 Send Email
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...
5704 thong_wearin_fireman
thong_wearin... Send Email
Sep 5, 2002
6:01 pm
JUnit 3.8.1 http://sourceforge.net/projects/junit...
5705 Vladimir Bossicard
vbossica Send Email
Sep 5, 2002
6:14 pm
... -- Vladimir Bossicard www.bossicard.com...
5706 junit@yahoogroups.com Send Email Sep 5, 2002
10:15 pm
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 Send Email
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@... Send Email
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 Send Email
Sep 6, 2002
6:07 pm
... -- Vladimir Bossicard www.bossicard.com...
5710 gbsag Send Email 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 Send Email
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@... Send Email
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 Send Email
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 Send Email 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... Send Email
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 Send Email
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@... Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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 ...
Messages 5693 - 5722 of 24405   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help