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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 13214 - 13243 of 22044   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
13214
... With this example though, one thing that strikes me is that Peel, Chop and Eat responsibilities don't naturally belong to the same object. I'd expected a...
Andrew McDonagh
andy_ipaccess
Offline Send Email
Apr 1, 2005
9:06 am
13215
I am also in smilar situation. Did you find out any way out?Pl share. Thanks Victor bkkunam <bkkunam@...> wrote: Hi, Whenever assert* or and JUnit test...
Vivek Varma
vkv3056
Offline Send Email
Apr 1, 2005
4:46 pm
13216
Lots of ideas..thanks folks.. No design cannot change for testing (can't expect new API for testing). Saying that these dependencies exists. Decision to be...
Arun J
jayarunkumar
Online Now Send Email
Apr 1, 2005
4:49 pm
13217
Since you said that there are many tests to run and that you run those from command line and console type of environment. May I suggest the use of ANT for...
Soaring Eagle
comfortable_...
Offline Send Email
Apr 1, 2005
6:52 pm
13218
I am experiencing the same problem and it was not fixed with the way suggested. Doesn't anybody have the same problem? I read a post somewhere saying this...
dccsd
Offline Send Email
Apr 2, 2005
1:41 pm
13219
Any clue on this. 1.I get a "Prohibited package name: java.beans" Exception when I run a test. 2.Looked at the methods...they are public.Looked at the policy ...
reykish
rockxc
Offline Send Email
Apr 2, 2005
1:41 pm
13220
... Watch it though: you will also aprove subclasses in this manner. If it is only about assignability, fine. But if you need the *same* class, isInstanceOf...
A.J. Bonnema
ajbonnema
Offline Send Email
Apr 2, 2005
1:42 pm
13221
... I believe it's a space in the CLASSPATH. At least, that's what I remember from earlier e-mails. -- J. B. (Joe) Rainsberger Diaspar Software Services ...
J. B. Rainsberger
nails762
Offline Send Email
Apr 2, 2005
2:11 pm
13222
... I hate to be rude, but do you /understand/ the error message? Java does not allow you to use the package java.beans. Are you trying to put your own classes...
J. B. Rainsberger
nails762
Offline Send Email
Apr 2, 2005
2:12 pm
13223
... An ANT question, but what the hey ;-) ... Curious. I'm guessing that you haven't set the environment variables ANT_HOME, JAVA_HOME, etc. In Windows, this...
James Abley
taboozizi
Offline Send Email
Apr 2, 2005
10:26 pm
13224
... Correct, if the OP wants to know whether Object Obj1 and Object Obj2 are the same type, then a simple obj1.getClass() == obj2.getCLass() would surfice. ...
Andrew McDonagh
andy_ipaccess
Offline Send Email
Apr 4, 2005
10:09 am
13225
... Or indeed assertEquals( obj1.getClass(), obj2.getCLass() ); which is where I came in many posts ago ... -- Chris "electric hedgehog" Dollin...
Chris Dollin
anover_alias
Offline Send Email
Apr 4, 2005
11:09 am
13226
... way ... Currently, my CLASSPATH looks like this %JUNIT_HOME%\junit.jar;%JUNIT_HOME% and, I have problem running the junit.samples.AllTests. Here is the ...
dccsd
Offline Send Email
Apr 4, 2005
3:47 pm
13227
hi. I'm using a MVC application. I want to check the following path: Login - navigate to a specific JSP - ask for customer details. I want to check the...
noam_eitan
Offline Send Email
Apr 4, 2005
3:47 pm
13228
... I initially started with Windows system variables per: Matt Raible's Wiki site, but following other advice, I cleaned them out to do everything in ANT. I...
Clark I Anderson
ciagetjob
Offline Send Email
Apr 4, 2005
3:47 pm
13229
Hi All, I've Been Looking Forward to Integrate the Two Frameworks But got No Success. Can Someone Send in Some Piece of Code On How to integrate the Two at...
Sumit
hansum2k1
Offline Send Email
Apr 4, 2005
3:48 pm
13230
... What does JUNIT_HOME point to? -- J. B. (Joe) Rainsberger Diaspar Software Services http://www.diasparsoftware.com Author, JUnit Recipes: Practical Methods...
J. B. Rainsberger
nails762
Offline Send Email
Apr 4, 2005
7:08 pm
13231
... If this is really an MVC application, then you should be able to set up the appropriate context and just invoke the Controller that handles the request you...
J. B. Rainsberger
nails762
Offline Send Email
Apr 4, 2005
7:09 pm
13232
... There is an example at the bottom of http://jemmy.netbeans.org/samples.html (so if you just googled a little bit and looked a little bit harder, you would...
Ilja Preuss
ipreussde
Offline Send Email
Apr 5, 2005
6:26 am
13233
Folks, I have a heirarchy of test cases.(jUnit/cactus based). Some test cases are run at the parent level and some are run at the child level. My observation...
Arun J
jayarunkumar
Online Now Send Email
Apr 6, 2005
12:33 pm
13234
... If you don't want to rerun the tests from the parent class, I assume that you are reusing some other code from it? What if you simply moved that code to a...
Ilja Preuss
ipreussde
Offline Send Email
Apr 6, 2005
3:32 pm
13235
Hello, I have written a junit testCase to test EJB. I am calling the testcase from a jsp. My problem is i get the awt window but it says class not found.can...
muktif
Offline Send Email
Apr 6, 2005
5:40 pm
13236
The requirement might need the methods in the parent class to be used in child class in which case you cannot remove the relationship between the two. For...
Anurag Setia
richardjavac...
Offline Send Email
Apr 6, 2005
5:40 pm
13237
My classes in the heirarchy uses different set of behaviour. Apart from this I would want tests to be run at different levels. If I can move common code, I...
Arun J
jayarunkumar
Online Now Send Email
Apr 7, 2005
5:12 am
13238
... Sorry, I don't understand at all what you mean by this. Perhaps you can show us some code? Cheers, Ilja...
Ilja Preuss
ipreussde
Offline Send Email
Apr 7, 2005
10:16 am
13239
... If there are methods in Mammel that you don't want to have in Dog, you need to introduce another class between Animal and Mammel, that Dog can directly ...
Ilja Preuss
ipreussde
Offline Send Email
Apr 7, 2005
10:17 am
13240
Hi, I've just started working with JUnit. Till now i've written some testcases and executing these testcases with the help of a testsuite. Now i want to...
balakrishna_narla
balakrishna_...
Offline Send Email
Apr 7, 2005
2:15 pm
13241
CALL FOR PAPERS: JOURNAL OF THE ASSOCIATION FOR SOFTWARE TESTING The Journal of the Association for Software Testing ( ...
Cem Kaner
cemkaner
Offline Send Email
Apr 7, 2005
2:15 pm
13242
Joe, thanks for your reply. 1. I not going to argue about the MVC thing :), the app is adding data to the session, so, a given action can access it. now, I can...
noam_eitan
Offline Send Email
Apr 7, 2005
2:16 pm
13243
... You can Google for "Parameterized Test Case" or search the archives for it. You will find lots of information. * -- Jason Rogers "I am crucified with...
Jason Rogers
jacaetev
Offline Send Email
Apr 7, 2005
4:38 pm
Messages 13214 - 13243 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