Search the web
Sign In
New User? Sign Up
junit · JUnit, the Java unit testing framework written by Kent Beck and Erich Gamma.
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 16587 - 16616 of 22044   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16587
Hello, I have just started using Junit and am very pleased with it. But one problem is how to organise groups of test classes into suites. In v3.8 it seemed...
otterblob
Offline Send Email
May 1, 2006
6:48 pm
16588
I do just my first experiences with JUnit. Complicated figures of applications should be no problem in JUnit, I imagine in such a way. Then is here certainly...
fm_5599
Offline Send Email
May 1, 2006
6:48 pm
16589
OK, this may seem like it will be a long post, and a apologize prematurely, however I've stripped the code down to the minimum needed to illustrate a major...
eetadic69
Offline Send Email
May 1, 2006
6:48 pm
16590
... than ... subclasses ... of a ... Very good. Where can I ind Juit tutorial?I don't need simple tutorial just like below...
glenxumail
Offline Send Email
May 1, 2006
6:50 pm
16591
Just in case anyone might be interested in the answer to my question: http://cvs.sourceforge.net/viewcvs.py/dbunit/dbunit/docs/Attic/howto.html?rev=1.24 How to...
savoymp
Offline Send Email
May 1, 2006
6:50 pm
16592
Its not as trivial as 'int i = "foo"'. I have a set of nested classes and interfaces with a somewhat complex inheritance/implementation structure. They act...
Jon Barrilleaux
jonbarril
Offline Send Email
May 1, 2006
6:50 pm
16593
Hai to all, I am placed in a company which developing server oriented products which runs on java coding..As a software tester ..i should be ready to go for...
dhandapani nagarajan
sath_n
Offline Send Email
May 1, 2006
6:50 pm
16594
All, Thanks for your patience. The zip file has been fixed. Share and Enjoy, David Saff...
David Saff
dsaff
Offline Send Email
May 3, 2006
2:17 am
16595
Hi, I'd like to add a AllTests.class to some of my packages that automatically scans for test cases and runs them. I choose to use junit-addons1.4 to help me...
kultstatus77
Offline Send Email
May 3, 2006
9:21 am
16596
www.junit.org -- Stephen Smith, MEng (Wales). http://www.stephen-smith.co.uk/...
Stephen Smith
steve@...
Send Email
May 3, 2006
5:17 pm
16597
David, Does this mean that 4.1 is now available with Eclipse , and can be downloaded as a plugin? Thanks, -Kamal. ... From: junit@yahoogroups.com...
Kamal Ahmed
KAhmed@...
Send Email
May 3, 2006
5:43 pm
16598
Dear Otterblob, If your IDE won't find the tests for you, you can create a JUnit 4 test suite by annotating a class with RunWith(Suite.class) and ...
Kent Beck
kentlbeck
Offline Send Email
May 3, 2006
9:33 pm
16599
Dear FM, AssertEquals(float actual, float expected, float epsilon) will always fail if epsilon is negative, as it is in your example below. Sincerely yours, ...
Kent Beck
kentlbeck
Offline Send Email
May 3, 2006
9:33 pm
16600
Hi all, quick question: can someone enlighten me to the benefits of using @BeforeClass vs using a static{} constructor for my test classes? Actually, I...
eetadic69
Offline Send Email
May 3, 2006
9:58 pm
16601
I haven't moved to Junit 4+ yet, but I would guess that one advantage might be that the @BeforeClass doesn't give you the ClassNotFoundException funkiness that...
Kevin Klinemeier
zipwow
Offline Send Email
May 3, 2006
10:02 pm
16602
... @BeforeClass runs everytime the tests are (re)run, a static initializer only once when the class is loaded. That would make a significant difference to a ...
Ilja Preuss
ipreussde
Offline Send Email
May 4, 2006
6:39 am
16603
That announcement was only about the JUnit library. However, see my next post. David Saff...
David Saff
dsaff
Offline Send Email
May 4, 2006
3:56 pm
16604
All, JUnit 4 support has been built in to the public release of Eclipse 3.2 RC 2. JUnit and Eclipse would both benefit from any testing you can do with your...
David Saff
dsaff
Offline Send Email
May 4, 2006
3:57 pm
16605
Hi, How can we verify, using JUnit if an object is really created, if a "new" operator is used to instantiate an object. Thanks, -Kamal. [Non-text portions of...
Kamal Ahmed
KAhmed@...
Send Email
May 4, 2006
7:51 pm
16606
Hmm, I only recently started using JUnit (since 4 has come out), so I'm not familar with those problems, but I'll take your word for it!...
eetadic69
Offline Send Email
May 4, 2006
9:15 pm
16607
Hi all, How can i put expected and actual objects in assertEqual(Object aobj, Object eobj); method, plz reply me...
chandrashekhartm
chandrashekh...
Offline Send Email
May 4, 2006
9:22 pm
16608
Hi all, so I'm continuing my learning curve with JUnit, and I have a scenario that I wish I could execute, but apparently I'm not allowed to. Basically, I...
eetadic69
Offline Send Email
May 4, 2006
9:24 pm
16609
Hello every body, I'm performing unit tests on a JAVA project using Junit and Ant. I'm using Ant to execute the Junit tests and to generate the unit test...
MNASRI Riadh
m_riadh80
Offline Send Email
May 4, 2006
9:34 pm
16610
From my brief scan of the JUnit4.1 docs, one could create a custom Runner using the @RunWith annotation, correct? I would like to add the following...
Mike Norman
mwnorman_top...
Offline Send Email
May 4, 2006
9:36 pm
16611
... I don't understand your problem. You just write assertEquals( X, Y ); where X is whatever value (object) you want, and Y is whatever value (object) you're...
Chris Dollin
anover_alias
Offline Send Email
May 5, 2006
7:41 am
16612
... As opposed to what? malloc()? ;)...
jason r tibbetts
tibbettj_at_...
Offline Send Email
May 5, 2006
2:27 pm
16613
Jason, Something like: public void testRemoval() { ProprietaryList list = new ProprietaryList(); Object instance = new Object(); list.add(instance); ...
Kamal Ahmed
KAhmed@...
Send Email
May 5, 2006
2:35 pm
16614
... Is the answer by definition? You either get an object or you get an exception. I don't bother testing whether 'new' succeded in producing a non null...
Mark Levison
marklevison
Offline Send Email
May 5, 2006
7:04 pm
16615
... Have you tried this? try { foo.doSomething(); fail("Exception should be raised!"); } catch (Exception passed) {} I admit, it removes the :-), which is...
J. B. Rainsberger
nails762
Offline Send Email
May 9, 2006
2:44 am
16616
... Submit it to JUnit-addons. -- J. B. (Joe) Rainsberger :: http://www.jbrains.info Your guide to software craftsmanship JUnit Recipes: Practical Methods for...
J. B. Rainsberger
nails762
Offline Send Email
May 9, 2006
2:51 am
Messages 16587 - 16616 of 22044   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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