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 1 - 30 of 22094   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1
I am a fan of JUnit ! I have been working with it for some time now and I have come up with an extension of it for testing server-side java code that is called...
Vincent Massol
vmassol@...
Send Email
Nov 6, 2000
4:16 pm
2
Hi Vincent, I'm the only person subscribed to this list other than you. :) I haven't announced it yet, but will soon. How did you find it so fast? I just...
Erik Meade
emeade@...
Send Email
Nov 7, 2000
3:15 am
3 Marcus Davies
marcus.davies@...
Send Email
Nov 7, 2000
10:23 am
4
Hi Vincent! I am a big fan of JUnit also. I too was once working on a framework much like the one you posted j2eeunit. Them someone showed me HttpUnit (which...
Jonathan Rasmusson
jr@...
Send Email
Nov 10, 2000
11:47 pm
5
Hi Jonathan, HttpUnit and J2EEUnit are doing different things : - HttpUnit tests the result of calling a JSP or Servlet, i.e. it gets the HTML/XML/WML/......
Vincent Massol
vmassol@...
Send Email
Nov 11, 2000
10:07 am
6
He, he ! It seems it existed before you created it last night !, because I subscribed to it a week ago ... :)...
Vincent Massol
vmassol@...
Send Email
Nov 11, 2000
10:08 am
7
... How is this different from simply using JUnit? I can test java classes with it too. -- David Corbin Mach Turtle Technologies, Inc. ...
David Corbin
dcorbin@...
Send Email
Nov 11, 2000
12:39 pm
8
Yes, you're right but some of these java classes need to have access to valid HttpServletRequest, HttpServleetResponse and HttpSession objects. One other...
Vincent Massol
vmassol@...
Send Email
Nov 11, 2000
5:06 pm
9
... Thats great to hear. I have done a considerable amount of EJB tests with JUnit and may be able to contribute. Cheers Jonathan...
Jonathan Rasmusson
jr@...
Send Email
Nov 14, 2000
4:18 am
10
OK. I just D/Led the V3.2 JUnit and I made a simple application under JBuilder 4.0 (which I'm also trying to come up to speed on) that has a simple unit test...
Paul Michali
pcm@...
Send Email
Nov 14, 2000
12:58 pm
11
... If you run the GUI test runner (junit.ui.LoadingTestRunner, for example) with your test cases somewhere on the classpath, you can run them by typing the...
Benjamin Schroeder
schroeder@...
Send Email
Nov 14, 2000
2:54 pm
12
... I guess I'm a bit dense, but I still can't get this to work. SOme of it is my inexperience with Java, jar files, and JBuilder. Here's what I've tried... ...
Paul Michali
pcm@...
Send Email
Nov 14, 2000
5:49 pm
13
... I had a look back at your source, and noticed that the source was in a package. Are you just using "TestSummarizer" as the class name? The JUnit GUI...
Benjamin Schroeder
schroeder@...
Send Email
Nov 14, 2000
6:42 pm
14
... Yes! That was the problem. When I created the class, using the JBuilder's wizard, I had it create a package. When I ran from the IDE and specified ...
Paul Michali
pcm@...
Send Email
Nov 14, 2000
7:49 pm
15
... No problem -- glad to hear you got it working! ... Ben Schroeder schroeder@......
Benjamin Schroeder
schroeder@...
Send Email
Nov 14, 2000
8:01 pm
16
Hi, currently I run the SwingUI issuing java -classpath <path>/junit.jar:<myclasses> junit.swingui.TestRunner TestPackage assuming you have a class called...
Andreas Heilwagen
andreas.heilwagen@...
Send Email
Nov 14, 2000
9:26 pm
17
... I suppose that's true. On the other hand, traversal might be a nice first cut. Each package could have a "restrictions.txt" file or something similar that...
Benjamin Schroeder
schroeder@...
Send Email
Nov 14, 2000
10:40 pm
18
Reasons why I use JUnit Because I want to refactor aggressively. Because I want to find bugs quickly. Gives me greater confidence in my code. I am entitled to...
Jonathan Rasmusson
jr@...
Send Email
Nov 15, 2000
3:36 am
19
Hi, have tried to use JUnit 3.2 in VaJAVA 3.5 as an IDE tool ? I am unable to figure out how to do it ....have you any help ? Tnx...
Piero Campanelli
pierolists@...
Send Email
Nov 15, 2000
7:26 pm
20
Just to let you know -- I can't use JUnitX because it is too reliant on Java2. On Windows, I'm using IBM JRE, which is not Java2. On the Macintosh, you should...
Keith Ray
keith.ray@...
Send Email
Nov 15, 2000
7:58 pm
21
Hi Piero, I'm still stuck too. I am reduced to running up TestRunner from the method and then running the tests. They work when you set up the classpath on ...
Tom Ayerst
tom@...
Send Email
Nov 15, 2000
9:03 pm
22 Anthony Dickinson
adickinson@...
Send Email
Nov 16, 2000
8:52 am
23
Hi, very nice work this tool ! It doesn't solve cleanly problem of JUnit and VaJava 3.5 but it patchs it using start() method !! Now I can use JUnit in Va !!...
Piero Campanelli
pierolists@...
Send Email
Nov 16, 2000
10:14 am
24
... I started JUnitX after reading the Refactoring-book of Martin Fowler. During my vacation I had real fun refactoring JUnit and afterwards I have been...
Andreas Heilwagen
andreas.heilwagen@...
Send Email
Nov 16, 2000
5:30 pm
25
Ok, I understand that a lot of people will be interested in using JDK 1.x. The appropriate action point will be added to my TODO list. Thanks for the feedback....
Andreas Heilwagen
andreas.heilwagen@...
Send Email
Nov 16, 2000
5:33 pm
26
Hi Jonathan, With the current J22EUnit, it is already possible to unit test EJBs. In your testXXX() method just do a lookup on the home, create the bean and...
Vincent Massol
vmassol@...
Send Email
Nov 16, 2000
9:20 pm
27
... reason ... to ... My experiences have been the same as Andreas. I tend to favour protected over private in my objects then if I place the test in the same...
Jonathan Rasmusson
jr@...
Send Email
Nov 16, 2000
11:54 pm
28
Hi, We apply the following strategies to make our EJB's *fully* testable. 1. EJB's are thin. They are really really thin. The EJB is in fact an interface into...
Vera Peeters
vera.peeters@...
Send Email
Nov 17, 2000
8:34 am
29
... JUnit should have an open source host soon. -- Erik Meade emeade@... Senior Consultant Object Mentor, Inc. ...
Erik Meade
emeade@...
Send Email
Nov 17, 2000
7:19 pm
30
... So you don't implement business logic as session beans??? Sounds weird... ciao, Ilja...
Ilja Preuß
ilja.preuss@...
Send Email
Nov 17, 2000
8:08 pm
Messages 1 - 30 of 22094   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