Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

junit · JUnit, the Java unit testing framework written by Kent Beck and Erich Gamma.

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 31224
  • Category: Java
  • Founded: Nov 6, 2000
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 20014 - 20044 of 24384   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
20014 skillsmatter.marketing
skillsmatter... Send Email
Oct 22, 2007
9:16 pm
Free Session: Steve Freeman and Mike Hill on Example Driven Development with Fit - Oct 22nd Join Steve Freeman and Mike Hill for this free In-the-Brain session...
20015 Thomas SMETS
smetsthomas Send Email
Oct 23, 2007
2:00 am
And how do I fix this ... ? Is there a mean to create suite (the old way) with the new test definitions ... ? \T, -- Any fool can write code that a computer...
20016 swe029 Send Email Oct 23, 2007
8:50 am
... That is the trace from the Statistics window of the JUnit Test Results. The output window which contains the stack trace printed from the catch block of my...
20017 Joe Schmetzer
copabella Send Email
Oct 23, 2007
10:45 am
Congratulations Vince! Your question has provoked a response from 3 book authors (so far). We should start keeping score :-) BTW, I can definitely recommend...
20018 Ilja Preuss
ipreussde Send Email
Oct 23, 2007
5:18 pm
... It can't, and it shouldn't. After all, the method that is called by the test doesn't throw the exception. Cheers, Ilja...
20020 David Saff
dsaff Send Email
Oct 23, 2007
8:49 pm
Thomas, Could you move the suite() method to another class? It seems that trying to do both things with the same class is causing most of the trouble. David...
20021 J. B. Rainsberger
nails762 Send Email
Oct 23, 2007
9:08 pm
... Good to know. I would hate to point people to old advice. The basics never change: narrow dependencies and separate framework extension points from plain...
20022 J. B. Rainsberger
nails762 Send Email
Oct 23, 2007
9:09 pm
... Someone has to promote the book. It'll die on its own if I don't. :) -- J. B. (Joe) Rainsberger :: http://www.jbrains.ca Your guide to software...
20023 Kathey Marsden
kbmars Send Email
Oct 24, 2007
6:47 pm
I have noticed that JUnit keeps a reference to an instance of every class for every fixture run, even after tests have completed. Is it possible to get JUnit...
20024 Stephen Smith
steve@... Send Email
Oct 24, 2007
7:08 pm
Are you clearing resources in the tearDown associated with each test? ... Stephen Smith, MEng (Wales). http://www.stephen-smith.co.uk/...
20025 Kathey Marsden
kbmars Send Email
Oct 24, 2007
8:12 pm
... Yes, we try to encourage that, not to say that there might not be some sloppiness out there, but JUnit still keeps a reference to an instance of the class...
20026 Stephen Smith
steve@... Send Email
Oct 24, 2007
11:23 pm
Hi Kathey, Which TestRunner implementation are you using, and are you defining your public static Test suite() methods? Steve ... Stephen Smith, MEng (Wales). ...
20027 Lasse Koskela
lassekoskela Send Email
Oct 25, 2007
6:49 am
Vince, ... Testing EJB 3 components has gotten so much easier compared to the 2.x spec that you don't really need much of a framework to do that. Having said...
20028 Hedley Finger
hedleyfinger Send Email
Oct 25, 2007
8:05 am
I wanted to do an assertEquals on the values of two double arrays, but the standard JUnit methods do not provide this (the object pointer references are...
20029 David Saff
dsaff Send Email
Oct 25, 2007
8:11 pm
Hedley, Importing the class does not import all of its methods into your namespace, in the way that extending a class does. Hence, you have to explicitly...
20030 Akshay Savadatti
asavadatti Send Email
Oct 29, 2007
11:45 am
Hi All, I am a student and I am interested in devoting some of my time to develop some additional functionality/fix bugs for junit. I am fairly proficient in...
20031 jls_nayak1983 Send Email Oct 29, 2007
11:45 am
Hi, I am working on Junit testing for swing application. I am using Abbot framework for gui testing. I have written a test class with some test cases. I...
20032 Nat Pryce
nat_pryce Send Email
Oct 29, 2007
11:55 am
Create the *smallest* test you can that demonstrates the problem. Remove everything from the test that is superfluous to making the problem occur. Remove...
20033 David Saff
dsaff Send Email
Oct 29, 2007
12:09 pm
Akshay, Welcome! There are several ways to contribute to Java testing. Some of these might become part of the JUnit distribution, and others will become...
20034 Carfield Yim
c8133594 Send Email
Oct 29, 2007
3:56 pm
Will that indicate a possible deadlock??...
20035 jls_nayak1983 Send Email Oct 31, 2007
8:05 am
Hi, Thanks for reply. But I wrote very simple test cases. One of test case just checks the title of Frame and second test checks the value of a combobox. The...
20036 Nat Pryce
nat_pryce Send Email
Oct 31, 2007
8:58 am
... Note, I also suggested that you remove everything from the code under test that is superfluous to making the problem occur. Start with your entire...
20037 Carfield Yim
c8133594 Send Email
Oct 31, 2007
5:42 pm
... First of all , I assume the java progress is still here, it just hang but not die. May be you can verify this at your side? If you ask me then I would...
20038 pmcevoy12 Send Email Nov 1, 2007
5:58 am
Hi, Is there a way to dynamically add tests to a test suite in JUnit 4? Maybe I am misunderstanding something, but it seems like the only way to add tests is...
20039 aashish
aashish_tau17 Send Email
Nov 1, 2007
5:58 am
Please assist me in mocking a static function of the source code in the testing code, when I cannot change the source code.... -- View this message in context:...
20040 Lasse Koskela
lassekoskela Send Email
Nov 1, 2007
9:05 am
... You could look into whether JEasyTest would do the trick for you: https://jeasytest.dev.java.net It does require AspectJ and I haven't tried JEasyTest...
20041 Paul King
paulk@... Send Email
Nov 1, 2007
9:43 am
... If you have the ability to use dynamic languages, you can certainly do this in Groovy and I would imagine Ruby (not sure). Otherwise, you might want to...
20042 James Abley
taboozizi Send Email
Nov 1, 2007
10:01 am
... Could you give us some more background on why you would want to do this? I think I only ever used this feature for doing Parameterized Tests, and JUnit 4...
20043 James Abley
taboozizi Send Email
Nov 1, 2007
10:05 am
... If it's just a method that your code is calling, you could wrap it in a simple Command interface and supply an implementation in your tests that does what...
20044 pmcevoy12 Send Email Nov 1, 2007
4:46 pm
James, I use the Java code as an algorithm and I put the actual parameters into files on the file system. For example, I might have these files ...
Messages 20014 - 20044 of 24384   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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