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: 31225
  • 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 22603 - 22632 of 24405   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
22603 t_manev08 Send Email Apr 6, 2010
1:11 pm
How can be tested dependable plug-ins, and fragments. To be made JUnits for testing dependable modules....
22604 David Saff
dsaff Send Email
Apr 6, 2010
1:13 pm
t_manev08, That's a pretty big question. The book "Contributing to Eclipse" has some good chapters on testing in Eclipse (although the specifics may have...
22605 Trajce Manev
t_manev08 Send Email
Apr 7, 2010
11:37 am
Thanks man. I did find what was looking for. ________________________________ From: David Saff <david@...> To: junit@yahoogroups.com Sent: Tue, April 6,...
22606 David Saff
dsaff Send Email
Apr 8, 2010
5:25 pm
All, We're in the process of releasing 4.8.2 (a small interim bugfix release). I'd like to do the right steps with respect to maven, but have to admit that...
22607 David Saff
dsaff Send Email
Apr 8, 2010
5:31 pm
This is a small bugfix release: http://kentbeck.github.com/junit/doc/ReleaseNotes4.8.2.html Download from http://github.com/KentBeck/junit/downloads David Saff...
22608 daddytli Send Email Apr 8, 2010
11:25 pm
With "older" traditional creation of test suites, the suite() method is used. I can invoke the test via Method method = class1.getMethod( "suite", new Class[0]...
22609 Trajce Manev
t_manev08 Send Email
Apr 9, 2010
8:30 am
I'm not sure is this the right thing you are looking for, but to run JUnit Suite class, for JUnit 4 clasess that have annotation style@, you can write as this...
22610 David Saff
dsaff Send Email
Apr 9, 2010
1:27 pm
new JUnitCore().run(class1); Hope this helps, David Saff...
22611 zach.calvert Send Email Apr 14, 2010
10:20 pm
I have been trying to figure out how exactly to use JUnit 4's new sort mechanism. I have come across the documentation at...
22612 yvesd.public Send Email Apr 15, 2010
1:38 pm
Hello dear JUnit community. My name is Yves Dessertine and I am new to JUnit. I have a question about good practises in JUnit. First of all, we plan to use...
22613 zach.calvert Send Email Apr 15, 2010
1:38 pm
David, Can you point me in the right direction to documentation on using Sorter? I have a handful of installer tests that I need to run in order on a win32...
22614 zach.calvert Send Email Apr 15, 2010
1:40 pm
So then why does junit 4 have a Sorter class, with documentation stating "A Sorter orders tests. In general you will not need to use a Sorter directly....
22615 Malte Finsterwalder
maltefinster... Send Email
Apr 15, 2010
3:07 pm
Hi Yves, For JUnit it is an anti-pattern to do so. JUnit doesn't guarantee any order of test execution. So JUnit is free to execute your tests in reverse...
22616 Kent Beck
kentlbeck Send Email
Apr 15, 2010
3:37 pm
Yves, Tests are intended to be isolated and self-sufficient in JUnit. This enables the tests to become more valuable by executing in parallel, sorting by...
22617 Cédric Beust 
cbeust Send Email
Apr 15, 2010
3:56 pm
Hi Kent, ... What you are saying is very specific to JUnit's implementation. It is quite possible to have: - Dependent tests - ... that can be run in isolation...
22618 Mark Salter
mark_l_salter Send Email
Apr 15, 2010
4:14 pm
... Well, on a jUnit mailing list, that is exactly what I would expect to see. 8) ... Using TestNG... ...interesting indeed, perhaps Yves will discover his...
22619 yvesd.public Send Email Apr 15, 2010
6:16 pm
Hello. Thank you Malte, Kent, Cédric and Mark for all you clear, interesting and friendly replies. According to what I've read, TestNG has _the_ two missing...
22620 David Saff
dsaff Send Email
Apr 15, 2010
6:19 pm
Zach, Sorter is really only designed well for people building test-running tools, not individual tests. For now, it seems that you wouldn't lost much by...
22621 David Saff
dsaff Send Email
Apr 15, 2010
6:21 pm
Zach, A feature we're considering for JUnit 4.9 would make what you want easier: we'll be more likely to include it if we see an issue logged at github with a...
22622 ttopwells Send Email Apr 20, 2010
1:15 am
I have a tool that's parsing various test file formats, and it'd be great if somebody would be willing to send me a copy of a JUnit XML result that uses...
22623 suneetha k
kokarla@... Send Email
Apr 21, 2010
12:53 pm
hi This is suneetha. iam new to cactus junit. can u please tel how to write cactus junit for this class. my english is not good.but hope u r understanding wht...
22624 Simon Chappell
spchappell Send Email
Apr 21, 2010
1:10 pm
If you need help with JUnit, please ask JUnit specific questions. If you have a problem with Cactus (which I've never really used) then perhaps the Cactus...
22625 suneetha k
kokarla@... Send Email
Apr 21, 2010
1:39 pm
hi thax for responding. but cactus and junit are similar, but only deffirerence is cactus framework is server side. could u please tel how to write in junit...
22626 Simon Chappell
spchappell Send Email
Apr 21, 2010
5:43 pm
Forgot to copy JUnit mailing list. Must drink tea before posting! :-) On Wed, Apr 21, 2010 at 12:42 PM, Simon Chappell < ... -- simonpeter.org | simonpeter.com...
22627 Max Bowsher
maxbowsher Send Email
Apr 21, 2010
6:11 pm
Hi, I'd really like to see something like http://github.com/KentBeck/junit/issues#issue/29 in JUnit. What is the current obstacle on integrating the code...
22628 Kent Beck
kentlbeck Send Email
Apr 21, 2010
11:50 pm
I'm not satisfied with the assymmetry between Rule and ClassRule. It should be MethodRule, but that would require all the rules out there to change. Also, I'm...
22629 Max Bowsher
maxbowsher Send Email
Apr 22, 2010
1:25 pm
... Could you clarify what you mean by that? In the git branch, Rule is an annotation and ClassRule an interface so I don't understand what you mean by...
22630 yme0987654321 Send Email Apr 22, 2010
2:05 pm
Max, If that is your use case, what isn't accomplished with the @BeforeClass method?...
22631 Max Bowsher
maxbowsher Send Email
Apr 22, 2010
6:16 pm
... There's nothing you can do with a method @Rule that you can't do with a @Before and @After, but rules allow packaging and re-use of setup/teardown...
22632 tomte_da Send Email Apr 23, 2010
12:11 pm
Hi, when coding assertTrue( this.getClass().getSimpleName() + "Ref ... found to be null: " + anything.toString()) the slow code for the concatenated assertion...
Messages 22603 - 22632 of 24405   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