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

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 21069 - 21098 of 22044   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
21069
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: ...
Varuna Seneviratna
varuna221073
Offline Send Email
Nov 3, 2008
4:37 am
21070
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...
Nikhil Deval
nikhil_deval
Offline Send Email
Nov 3, 2008
7:51 am
21071
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. ...
David Saff
dsaff
Offline Send Email
Nov 3, 2008
6:10 pm
21072
On Fri, Oct 31, 2008 at 12:39 PM, Charlie Poole ... Agreed. ... I've done so in JUnit, by the way: ...
David Saff
dsaff
Offline Send Email
Nov 3, 2008
6:13 pm
21073
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...
Jeff
j_j_g_1_2_3
Offline Send Email
Nov 3, 2008
8:53 pm
21074
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...
David Saff
dsaff
Offline Send Email
Nov 4, 2008
3:16 pm
21075
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...
David Saff
dsaff
Offline Send Email
Nov 4, 2008
6:04 pm
21076
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: ...
Jeff
j_j_g_1_2_3
Offline Send Email
Nov 4, 2008
9:27 pm
21077
Nikhil, I use the JUnitReport task. http://ant.apache.org/manual/OptionalTasks/junitreport.html ... attachments to ... addressee(s) and may ... you are not ......
pmcevoy12
Offline Send Email
Nov 4, 2008
9:27 pm
21078
Console output might get interspersed with multi-threaded tests, but if you create XML testresults with the JUNITREPORT task, it isn't.  Regards, Jan ...
Jan Cumps
j_cumps
Offline Send Email
Nov 5, 2008
11:17 am
21079
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...
James Abley
taboozizi
Offline Send Email
Nov 7, 2008
11:49 am
21080
As an FYI - one open source project (SOAj) provides (in a base class) two representative convenience methods for asserting exceptions. In addition to a...
Marvin Toll
y153446
Offline Send Email
Nov 7, 2008
12:42 pm
21081
... 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...
Nat Pryce
nat_pryce
Offline Send Email
Nov 7, 2008
1:21 pm
21082
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. ... ...
James Abley
taboozizi
Offline Send Email
Nov 10, 2008
3:00 pm
21083
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...
irene smile
ssmile73
Offline Send Email
Nov 11, 2008
12:24 am
21084
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?. ...
madavahegde
Offline Send Email
Nov 11, 2008
12:24 am
21085
... 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...
Nat Pryce
nat_pryce
Offline Send Email
Nov 11, 2008
12:30 am
21086
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...
James Abley
taboozizi
Offline Send Email
Nov 11, 2008
10:28 am
21087
... It is, but the JUnit API does not well support it yet. --Nat...
Nat Pryce
nat_pryce
Offline Send Email
Nov 11, 2008
10:46 am
21088
... 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],...
madavahegde
Offline Send Email
Nov 11, 2008
12:30 pm
21089
... 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...
James Abley
taboozizi
Offline Send Email
Nov 11, 2008
12:49 pm
21090
... 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...
madavahegde
Offline Send Email
Nov 12, 2008
12:29 pm
21091
Sudarshen, I'm sorry you never got a response to this. Did you find an answer? David Saff...
David Saff
dsaff
Offline Send Email
Nov 12, 2008
7:39 pm
21092
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...
GoldenDog63
Offline Send Email
Nov 12, 2008
11:11 pm
21093
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...
novin_b
Offline Send Email
Nov 14, 2008
7:53 am
21094
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...
kentb
kentlbeck
Offline Send Email
Nov 14, 2008
2:47 pm
21095
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...
yosefshariat
Offline Send Email
Nov 16, 2008
8:44 am
21096
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...
idan72
ishai@...
Send Email
Nov 17, 2008
12:20 pm
21097
... Eclipse is open source... ;-) Greetings, Malte...
Malte Finsterwalder
maltefinster...
Offline Send Email
Nov 17, 2008
3:38 pm
21098
JUnit 3 or 4? David Saff...
David Saff
dsaff
Offline Send Email
Nov 17, 2008
7:08 pm
Messages 21069 - 21098 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