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 your group to be featured on the Yahoo! Groups website? 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 11083 - 11112 of 22044   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11083
Hi all of u .. i need to Urgent Help i have configured the Junitee in WSAD as under:- in my web project i have imported my junit.jar and junitee.jar. I have my...
fulcrumlogicuk
Offline Send Email
Jun 2, 2004
1:19 am
11084
I am just started out with these two tools. Jcoverage seems to use Junit tests to see what code have you 'covered'/unit tested. yes? Now i had two questions......
arianhojat2000
Offline Send Email
Jun 2, 2004
1:19 am
11085
Hi I run the "java junit.textui.TestRunner junit.samples.AllTests" in the command line after set the CLASSPATH to the junit.jar,but it tells me :"Can not find...
jiwenke2004
Offline Send Email
Jun 2, 2004
1:21 am
11086
Hi After I installed the Junit, the textui for the AllTests works as: OK(119 tests),but I invoke the GUI with swingui and awtgui and run the AllTests class ,it...
jiwenke
jiwenke2004
Offline Send Email
Jun 2, 2004
1:21 am
11087
Hi - I'm attempting to introduce junit testing techniques into where I work. So far I've used it on a small scale, writing junit tests for enhancement changes...
Kevin O'Sullivan
kosullivan_e...
Offline Send Email
Jun 2, 2004
1:22 am
11088
OS: Windows NT 4.0 SP6a Java: 1.4.2_04-b05 From the dos prompt I run the following via a .bat set classpath=H:\languages\java\JUnit\junit3.8.1 ...
roberto_lucente
Offline Send Email
Jun 2, 2004
1:22 am
11089
TestListener is called back for TestCases only. Is there any reason why the framework does not call startTest() and endTest() methods for ALL instances of...
Jacek Radajewski
jacek_radaje...
Offline Send Email
Jun 2, 2004
1:23 am
11090
... Please show us the command you used to launch JUnit that gave you the error. -- J. B. Rainsberger, Diaspar Software Services http://www.diasparsoftware.com...
J. B. Rainsberger
nails762
Offline Send Email
Jun 2, 2004
4:49 am
11091
... Tests are not overhead; they are the safety net that /enables/ you to make changes confidently. They /save/ you time & effort. Without tests, how do you...
J. B. Rainsberger
nails762
Offline Send Email
Jun 2, 2004
4:53 am
11092
... The tests are not in junit.jar; they are loose class files inside one of the JUnit directories. ... 1. simpletest should be SimpleTest -- case matters. 2....
J. B. Rainsberger
nails762
Offline Send Email
Jun 2, 2004
6:23 am
11093
... Bad classpath! Problem #1, you have junit.jar on there twice. Remove one. Problem #2, you have ./junit/tests/runner and ./junit/samples on there, which...
J. B. Rainsberger
nails762
Offline Send Email
Jun 2, 2004
6:26 am
11094
Hi Kevin, ... Substantial amounts of MockObjects raises a red flag for me. It means that there may be areas where an object needing to be mocked has taken too...
Mike Clark
clarkware
Offline Send Email
Jun 2, 2004
3:32 pm
11095
Kevin, I am preparing for something similar, I have a huge quantity of poorly refactored legacy code. So far, I see viable the idea of identifying inflecion...
Danijel Arsenovski
darsenovski@...
Send Email
Jun 2, 2004
3:48 pm
11096
... Yes, don't look at the tests as overhead. Look at them as short-cuts that help you understand. For instance, often it is great to know that: ...
Michael Feathers
mfeathers256
Offline Send Email
Jun 2, 2004
5:52 pm
11097
First, I agree with everything that Mike Clark and J.B. said. :-) But, I do want to add my 1/50th of a Federal Reserve Note concerning using JUnit on a large...
Chappell, Simon P
simon.chappell@...
Send Email
Jun 2, 2004
7:00 pm
11098
"Kevin O'Sullivan" Tue, 1 Jun 2004 09:42:50 +0100 ... More on maintenance below. Regarding "thousands of test cases": * Some test coverage is better than none....
Thomas L Roche
tlroche
Offline Send Email
Jun 2, 2004
10:11 pm
11099
Hello Thomas, Wednesday, June 2, 2004, 6:09:50 PM, you wrote: TLR> "Kevin O'Sullivan" Tue, 1 Jun 2004 09:42:50 +0100 ... TLR> * s/unit//. Don't get hung up on...
Michael Feathers
mfeathers256
Offline Send Email
Jun 3, 2004
12:18 am
11100
I have written a class called XyzTestCase which extends TestCase. This has various reasons, for example because I needed to overwrite runBare method. Now I...
haefeleuser
Offline Send Email
Jun 3, 2004
4:33 am
11101
Hi All, I am trying to use JUnit for testing some of our java classes that we are developing using Broadvision 7.1. We are using IntelliJ Idea 4.03 as our IDE...
smungi
Offline Send Email
Jun 3, 2004
4:33 am
11102
hmm... like simulate a mouse movement without needing other extension? like jemmy , abbot?...
nederay
Offline Send Email
Jun 3, 2004
4:33 am
11103
... Look for junit.extensions.TestSetup. I think it's your solution. One thing: I have never needed to override runBare(). Can you explain why you need to do...
J. B. Rainsberger
nails762
Offline Send Email
Jun 3, 2004
4:51 am
11104
... Why would you want to rewrite a feature that someone has already written? -- J. B. Rainsberger, Diaspar Software Services http://www.diasparsoftware.com ::...
J. B. Rainsberger
nails762
Offline Send Email
Jun 3, 2004
4:51 am
11105
... If you mean lots of mocks with complicated set up, then I agree there's a problem, but there are other ways to look at it. ... The problem here is not the...
Steve Freeman
smg_freeman
Online Now Send Email
Jun 3, 2004
12:41 pm
11106
Is there any way to run tests using the junit.swingui.TestRunner with having the short summary of found errors and falures in my console (e.g. Messages Log in...
gundoroff
Offline Send Email
Jun 3, 2004
6:27 pm
11107
... I override runBare() because if a test fails and if an exception occurs in the tearDown() method, then the test failure meassage is swallowed by JUnit and...
haefeleuser
Offline Send Email
Jun 3, 2004
6:28 pm
11108
... Have a look at the FAQ (http://junit.sourceforge.net/doc/faq/faq.htm#running_8) This may help u debug. ~preetham...
Preetham Kajekar
kajekar
Offline Send Email
Jun 3, 2004
6:28 pm
11109
... Use Intellij Idea http://www.jetbrains.com/idea/ instead ;-) ... I think you may find the integration of JUnit to be what you are after. Shane ...
Shane Mingins
shanemingins
Offline Send Email
Jun 4, 2004
4:21 am
11110
Hello: I hope this is this question is the appropriate place to pose this quesiton. Apologies in advance if not. I am developing a Java application which...
Donald Onyango
cdonyi
Offline Send Email
Jun 4, 2004
4:21 am
11111
... Here's how I would try it: create a subclass of the SwingUI TestRunner in which you register a ResultPrinter as an extra TestListener. I bet that would...
J. B. Rainsberger
nails762
Offline Send Email
Jun 4, 2004
4:24 am
11112
... Why are you testing the instance of your application running in production? Maybe I just don't understand why "running continuously" matters. ... I like...
J. B. Rainsberger
nails762
Offline Send Email
Jun 4, 2004
4:28 am
Messages 11083 - 11112 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