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

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 14278 - 14307 of 22044   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
14278
What benefit does org.junit.Assert provide, as opposed to junit.framework.Assert? Unless some new assertions are available - Assert#assertException or...
Stephen Smith
steve@...
Send Email
Aug 1, 2005
6:05 pm
14279
While I agree that the below definition of "assertion" can be applied to both JDK 1.4+ assertions and JUnit assertions, using classes that are solely JDK 1.4+...
Stephen Smith
steve@...
Send Email
Aug 1, 2005
6:05 pm
14280
Thanks to all who answered my question. My batchtest with **/*Test.class failed because i have put all my classes in sipenum package which **/*Test.class could...
vpham2000
Offline Send Email
Aug 1, 2005
6:06 pm
14281
Followed the approach mentioned in http://www.javaworld.com/javaworld/jw-05-2000/jw-0526-testinfect- p2.html. Unable to access the Junit test cases that are...
cogphil
Offline Send Email
Aug 1, 2005
6:06 pm
14282
hi, I'm an , i'm from VietNam, i am studying about Junit but now i have not got any book about it, so who has some books then give to me to my email. I want to...
an thanh
ancntt2002
Offline Send Email
Aug 1, 2005
6:06 pm
14283
... Google "smalltalk testing patterns" for the article in which Kent describes SUnit. It came first. -- J. B. (Joe) Rainsberger Diaspar Software Services ...
J. B. Rainsberger
nails762
Offline Send Email
Aug 1, 2005
10:30 pm
14284
Wouldn't it be nice if Junit could do all the hard work and create the tests for you? We've started an open source project to explore that idea. Obviously it...
Calvin Austin
calvinandblogs
Offline Send Email
Aug 1, 2005
11:20 pm
14285
... This seems a little off-topic. Try reading the manual [1] - the core types haven't changed too much over the last year or so, or posting to the ant-users...
James Abley
taboozizi
Offline Send Email
Aug 2, 2005
7:44 am
14286
... I don't see how it could - when I start writing tests, there is no code for anything to create tests /from/. What am I missing? -- Chris "electric...
Chris Dollin
anover_alias
Offline Send Email
Aug 2, 2005
8:07 am
14287
Not everyone uses JUnit for TDD, I suppose. Nowadays that I think in TDD, I can barely imagine a tool to write my unit tests for me, any more than I can...
Bradley, Todd
todd404
Offline Send Email
Aug 2, 2005
2:46 pm
14288
Oops, bad attribution. Calvin was the one proposing a tool to write my unit tests for me. Todd. ________________________________ From: junit@yahoogroups.com...
Bradley, Todd
todd404
Offline Send Email
Aug 2, 2005
3:27 pm
14289
Hi After executing the run.sh iam getting as 0 tests Ok and iam getting as "class not found -- loading dummy " in the TestGenerated.log and also plz guide me...
N V K VaraPrasada Rao R
varaprasad_1261
Offline Send Email
Aug 2, 2005
7:12 pm
14290
Isn't this what Parasoft's JTest does? -- Stephen Smith, MEng (Wales). http://www.stephen-smith.co.uk/...
Stephen Smith
steve@...
Send Email
Aug 2, 2005
7:12 pm
14291
There are two roles for automatic testgen, one is that you only stubbed out your api, I admit, not true TDD by a long way. The other use is that your...
Calvin Austin
calvinandblogs
Offline Send Email
Aug 2, 2005
7:13 pm
14292
... What do you mean by "unit test page"?...
Russell Gold
russgold
Offline Send Email
Aug 2, 2005
9:17 pm
14293
The new Assert class throws the same exception as Java's assert keyword. Another reason for having the new Assert class is that it lives in the same package...
Kent Beck
kentlbeck
Offline Send Email
Aug 3, 2005
6:50 am
14294
HEY ANYBODY PLEASE CLEAR MY DOUBT I HAVE JOINED IN A COMPANY FOR INTERN AND THEY SAID ME TO WORK ON JUNIT MY DOUBT IS THAT DOES WORKING ON JUNIT COME UNDER ...
swathi swathi
swathi_susarapu
Offline Send Email
Aug 3, 2005
12:06 pm
14295
hi everybody, Iam new to JUnit.I have to test a static private function. So could you please help me out in writing test cases for it. Thanks and Regards Vara...
Prasad
varaprasad_1261
Offline Send Email
Aug 3, 2005
12:06 pm
14296
... No you don't. You either need to test the public methods that call the private static function or you need to delete the function if nothing in the public...
Elliotte Rusty Harold
elharo@...
Send Email
Aug 3, 2005
1:02 pm
14297
Hi According to my knowledge, Junit comes under unit testing. U can find the required stuff at the junit site itself. U can find the documentation required to...
Prasad
varaprasad_1261
Offline Send Email
Aug 3, 2005
2:17 pm
14298
HI, JUNIT is mainly meant for Unit Testing java classes.IT has to be done by all the testers to make surte that there code works as he expected.So we can not...
saravanan.thirugnanam...
stsaravanan1983
Offline Send Email
Aug 3, 2005
2:17 pm
14299
Agreed. However, If you still need this :) , you could look up junit faqs. They've demonstrated this technique with a PrivilegedAccessorTest, the target class...
oswalvivek
Offline Send Email
Aug 3, 2005
2:19 pm
14300
Does anyone know how to get the Message variable in the Assert to print even if an error does not occur? I would like to put a descriptive message in each...
Gerry Smith
gerrysmusa
Offline Send Email
Aug 3, 2005
2:20 pm
14301
Hi, I've been going over this thread but could not find the answer for my problem. I am working wiht a 3rd party api. Where I have to extend one of their ...
smatalonga
Offline Send Email
Aug 3, 2005
2:20 pm
14302
Hello All, I am attempting to write a simple testscripts that connects to a sample application within BEA Weblogic "Avitek Medical". I am running into problems...
dominodv
Offline Send Email
Aug 3, 2005
2:21 pm
14303
... Can you inherit from Message? class TestableMessage extends Message { public TestableMessage() { super(null); } } ... Robert S. Koss, Ph.D. Senior...
Bob Koss
koss@...
Send Email
Aug 3, 2005
2:26 pm
14304
You can't easily do this (in JUnit 3). The assert* methods don't support it and there's no easy way to modify their behavior, as they're static methods....
Bradley, Todd
todd404
Offline Send Email
Aug 3, 2005
3:52 pm
14305
From the documentation I've read both Parasoft and Agitar have professional tools that have proved many of these techniques, both are very good but very...
Calvin Austin
calvinandblogs
Offline Send Email
Aug 3, 2005
4:38 pm
14306
Dear Robert, Thank you for your quick answer. To inherit was my first guess also, but since the Message class has no default constructor the compiler does not...
smatalonga
Offline Send Email
Aug 3, 2005
4:39 pm
14307
Hi Swati , I understand your concern but its like junits are the work thats primarily done by a developer of a class I mean who understands its functionality ....
dans
dans_19
Offline Send Email
Aug 3, 2005
7:04 pm
Messages 14278 - 14307 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