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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 2711 - 2740 of 24388   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Simplify | Expand Author Sort by Date v
2740 J. B. Rainsberger
jbrains762@... Send Email
Sep 25, 2001
2:43 am
... Much more specific, Emily. Thank you. It's unfortunate that I'm still a multithreading moron, otherwise I'd try to answer your question. Anyone else?! JBR....
2739 Steve Freeman
steve@... Send Email
Sep 24, 2001
11:40 pm
Here's something I've been working on. It's a paper that talks about some techniques for developing a database application test-first. The example code is in...
2738 Shane Duan
sduan@... Send Email
Sep 24, 2001
5:47 pm
What about we do a poll in yahoo group. I am always curious in the answer. I am all infected by JUnit now but whenever I talk with people who has never used...
2737 Eric Vought
evought@... Send Email
Sep 24, 2001
3:54 pm
Well, some points: 1) I don't see where you release the lock in the getsLockAfterwards thread. This can cause your test to fail if you have more than one ...
2736 Emily Bache
emily.bache@... Send Email
Sep 24, 2001
10:51 am
Hi, I am also a little unsure of how to test multithreaded code, and I hope my question is a bit more specific than the last one :-) I wrote this test case to...
2735 Heikki
heikki@... Send Email
Sep 24, 2001
9:17 am
Hi in order to convince management at my company that writing automatic unit tests is not only cheaper for code maintenance but speeds up the development...
2734 hitesh gala
gala700@... Send Email
Sep 22, 2001
7:55 am
... __________________________________________________ Do You Yahoo!? Get email alerts & NEW webcam video instant messaging with Yahoo! Messenger....
2733 Shane Celis
shane@... Send Email
Sep 21, 2001
11:34 pm
err... http://www.gnufoo.org/junit/index.html#failures ... From: Shane Celis [mailto:shane@...] Sent: Friday, September 21, 2001 4:18 PM To:...
2732 Shane Celis
shane@... Send Email
Sep 21, 2001
11:18 pm
I created a new patch that allows you to change the assert behavior, between the standard "fatal" assertions, and the new non-standard "non-fatal&quot; assertions....
2731 Paul Michali
pcm@... Send Email
Sep 21, 2001
5:37 pm
I took Vladimir's advice and pass a Properties object to each method that needs to process the properties, rather than have these methods access a Properties...
2730 qionghua yang
qhyang@... Send Email
Sep 21, 2001
5:09 pm
Hi, You can use assertTrue() to replace assert() method in your unit tests. I did it in Junit3.7 version and it worked fine. Hope this helpes! qionghua yang ...
2729 J. B. Rainsberger
jbrains762@... Send Email
Sep 21, 2001
3:49 pm
Yes!!!!!!!! You can do it too!!!!!! Just try a couple of web searches, then when you have specific questions, come back and ask them!!!!!! JBR....
2728 J. B. Rainsberger
jbrains762@... Send Email
Sep 21, 2001
3:48 pm
http://c2.com/cgi/wiki?AbstractTestCases Enjoy. JBR ... write ... which Foo ... of OOAO,...
2727 J. B. Rainsberger
jbrains762@... Send Email
Sep 21, 2001
3:41 pm
... testing, ... files. [...] Hm. Your program reads a property file. Why? Can it just take a Properties object instead? Can something else read the Properties...
2726 Walfredo Cirne
walfredo@... Send Email
Sep 21, 2001
12:01 pm
Hi All!!! Any ideas on how to write tests for multithreaded code? []s Walfredo...
2725 Kaarle Kaila
kaakaila@... Send Email
Sep 21, 2001
5:16 am
... ........... I could find EJBVerify. It does not look like a JUnit tool. What is super150. The search engine finds a lot but no testing tool? Kaarle Kaila ...
2724 Eric Vought
evought@... Send Email
Sep 20, 2001
6:10 pm
We've used the same basic template to good effect. ... -- Eric Vought Chief Technical Officer - QLUE Consulting, Inc. evought@... toll-free: 888-771-3538...
2723 Eric Vought
evought@... Send Email
Sep 20, 2001
5:35 pm
You may want to check out the com.qlue.util.getopt package (http://qcijutils.qlue.com). The GetOpt package contains an object oriented mechanism for parsing...
2722 Robert Sartin
sartin@... Send Email
Sep 20, 2001
3:46 pm
... We've had good, maintainable results doing this. The "knows which class to construct" we solve with a Template Method: class FooTestCase extends TestCase {...
2721 Paul Michali
pcm@... Send Email
Sep 20, 2001
3:17 pm
... Sorry all. To send to the above list you must subsscribe. You can go to the Ant home page and subscribe to that list, if interested in Ant discussions. It...
2720 Paul Michali
pcm@... Send Email
Sep 20, 2001
2:42 pm
... Yes, I just made a custom Ant task yesterday that tries to connect to Dixie and fails, if it cannot connect. I'm looking at ways to either set a property...
2719 Mike Clark
mike@... Send Email
Sep 20, 2001
2:32 pm
... The ActiveTestSuite runs each test in a separate thread and waits for all the threads to terminate. An example usage of setting up an ActiveTestSuite is: ...
2718 Laurent Duperval
lduperval@... Send Email
Sep 20, 2001
2:21 pm
... I think this may interest me too. Can you send me the patches? Thanks, L -- Laurent Duperval <mailto:lduperval@...> Je sens comme un torrent...
2717 Eric Vought
evought@... Send Email
Sep 20, 2001
2:17 pm
Does dixie listen on the standard SMTP port? One could just connect and disconnect to make sure it's running. ... -- Eric Vought Chief Technical Officer - QLUE...
2716 Paul Michali
pcm@... Send Email
Sep 20, 2001
11:40 am
... Yes, I just changed my program yesterday to obtain the property file and create a Properties object and then load. Once that was done, I then passed the...
2715 Mark Meyers
markm@... Send Email
Sep 20, 2001
10:28 am
Why not a single doTest(Foo implementation) method and five testXxx() methods that only pass a concrete implementation ? If you want five TestCases make an...
2714 David Corbin
dcorbin@... Send Email
Sep 20, 2001
10:07 am
Please consider this example: I have an interface Foo (or even a base class). I have a number of implemetations of Foo (Bar, Jam, Zip). Now, as it turns...
2713 RamanaMurty M
mvr.murty@... Send Email
Sep 20, 2001
8:46 am
If any guy has got any guide or doc how to do reverse engineer java code in to UML ,Using Poseidon Pl. let me know. Best Regards Murty ... From: Pankaj...
2712 John Goalby
jgoalby@... Send Email
Sep 19, 2001
11:52 pm
Something I do is have a method that loads the property file and returns a Properties object. I then pass the Properties object to the methods that need them....
2711 Bret Waldow
Bret.Waldow@... Send Email
Sep 19, 2001
10:11 pm
Hello, We are just getting started with jUnit. One requirement we have is to use the test system to run load and stress testing, which implies multiple ...
Messages 2711 - 2740 of 24388   Newest  |  < Newer  |  Older >  |  Oldest
Add to My Yahoo!      XML What's This?

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