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

Messages

Advanced
Messages Help
Messages 21069 - 21098 of 24405   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
21069 Varuna Seneviratna
varuna221073 Send Email
Nov 3, 2008
4:37 am
Hi, You can see a list of my groups on Grouply at the link below. Maybe you'll find some you want to join. Varuna Here's the link: ...
21070 Nikhil Deval
nikhil_deval Send Email
Nov 3, 2008
7:51 am
hey all - want to generate report (html) by running my simple test suit with drools + ant + junit - what are steps need to follow. please share any simple...
21071 David Saff
dsaff Send Email
Nov 3, 2008
6:10 pm
Nikhil, For generating HTML reports with ant, Googling ant junit html worked pretty well for me. I'm not sure how drools would make this more complicated. ...
21072 David Saff
dsaff Send Email
Nov 3, 2008
6:13 pm
On Fri, Oct 31, 2008 at 12:39 PM, Charlie Poole ... Agreed. ... I've done so in JUnit, by the way: ...
21073 Jeff
j_j_g_1_2_3 Send Email
Nov 3, 2008
8:53 pm
Hi, I am new to this group, so if there is a FAQ or thread that addresses this, please direct me appropriately. I wrote a comprehensive set of tests in jUnit...
21074 David Saff
dsaff Send Email
Nov 4, 2008
3:16 pm
Brendan, Test failure information should be reported through the ant task, regardless of whether it is multi-threaded. Are you saying that the output from...
21075 David Saff
dsaff Send Email
Nov 4, 2008
6:04 pm
Jeff, Can you expand on what you mean by "The problem is that making a suite using annotations does not really work so well. The annotations are not...
21076 Jeff
j_j_g_1_2_3 Send Email
Nov 4, 2008
9:27 pm
Hi David! Here. Let us say that I had test classes, Test0, Test1. Each of these requires a backend to be configured. I'd like to do something like this: ...
21077 pmcevoy12 Send Email Nov 4, 2008
9:27 pm
Nikhil, I use the JUnitReport task. http://ant.apache.org/manual/OptionalTasks/junitreport.html ... attachments to ... addressee(s) and may ... you are not ......
21078 Jan Cumps
j_cumps Send Email
Nov 5, 2008
11:17 am
Console output might get interspersed with multi-threaded tests, but if you create XML testresults with the JUNITREPORT task, it isn't.  Regards, Jan ...
21079 James Abley
taboozizi Send Email
Nov 7, 2008
11:49 am
Hi, I have some JMock tests that are using JUnit 3.8.1-style parameterization. I am currently at a loss how to migrate them, other than implementing my own...
21080 Marvin Toll
y153446 Send Email
Nov 7, 2008
12:42 pm
As an FYI - one open source project (SOAj) provides (in a base class) two representative convenience methods for asserting exceptions. In addition to a...
21081 Nat Pryce
nat_pryce Send Email
Nov 7, 2008
1:21 pm
... JMock's runner is purely for convenience. All it does is call assertIsSatisfied() on the Mockery. You can use a different runner if you perform that call...
21082 James Abley
taboozizi Send Email
Nov 10, 2008
3:00 pm
Hi all, Our continuous integration environment picked up a strange thing which I'm sharing in case anyone else has similar cause to scratch their head. ... ...
21083 irene smile
ssmile73 Send Email
Nov 11, 2008
12:24 am
Hi,   I am new JUnit.   I am executing JUnit tests through maven. I see result text files for each ..java file that has @Test methods.   However there is no...
21084 madavahegde Send Email Nov 11, 2008
12:24 am
I want to gnerate test cases at run time . TO achieve this i feel like i need to use customised runner. Can some one help me devloping customised runner?. ...
21085 Nat Pryce
nat_pryce Send Email
Nov 11, 2008
12:30 am
... It will probably be easier to use a parameterised test than to write your own test runner. --Nat -- Random musings at http://www.natpryce.com...
21086 James Abley
taboozizi Send Email
Nov 11, 2008
10:28 am
Thanks Nat. Calling it at the end of each test method or using an @After annotated method both seem to work fine. Is it a valid use case though, wanting to...
21087 Nat Pryce
nat_pryce Send Email
Nov 11, 2008
10:46 am
... It is, but the JUnit API does not well support it yet. --Nat...
21088 madavahegde Send Email Nov 11, 2008
12:30 pm
... Thanks foir your suggestion. I tried to use parameterised test cases. On eproblem i found was it is going to create test case names like method[0],...
21089 James Abley
taboozizi Send Email
Nov 11, 2008
12:49 pm
... Can you share why you need more meaningful names? Could you pass a parameter into each test which would give you more meaningful failure messages, for...
21090 madavahegde Send Email Nov 12, 2008
12:29 pm
... feel like ... Hi James, If there is no provision to get meaningful name then i can go ahead with getting meaningful message. But in our application junit...
21091 David Saff
dsaff Send Email
Nov 12, 2008
7:39 pm
Sudarshen, I'm sorry you never got a response to this. Did you find an answer? David Saff...
21092 GoldenDog63 Send Email Nov 12, 2008
11:11 pm
I am trying to enhance JUnitEE to work with Junit 4 but I can't find any good examples of creating a custom runner based on 4.x from end-to- end. Can anyone...
21093 novin_b Send Email Nov 14, 2008
7:53 am
Hi I'm doing project in Icefaces with spring and hibernate. For that i m writing junit test. i wrote test cases for DAO as well as services classes. I have...
21094 kentb
kentlbeck Send Email
Nov 14, 2008
2:47 pm
All, David Saff introduced me to a technique a couple of weeks ago that I'd like to share. So you have a defect and a system-level test that fails. How do you...
21095 yosefshariat Send Email Nov 16, 2008
8:44 am
Hi I want to manage all test scenario and report of result with software. I wrote any unit test and run and generate many reports from them. I want software or...
21096 idan72
ishai@... Send Email
Nov 17, 2008
12:20 pm
Hi, I want to be able to run specific test in class file. From eclipse I can do that. Does anyone know how eclipse do that ? How does it build it to run...
21097 Malte Finsterwalder
maltefinster... Send Email
Nov 17, 2008
3:38 pm
... Eclipse is open source... ;-) Greetings, Malte...
21098 David Saff
dsaff Send Email
Nov 17, 2008
7:08 pm
JUnit 3 or 4? David Saff...
Messages 21069 - 21098 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