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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 11331 - 11360 of 22044   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11331
Nice to hear it's not all our fault ;-) but it sounds like we need to improve either the doc or the download. Depending on your circumstances, given that the...
Steve Freeman
smg_freeman
Offline Send Email
Jul 1, 2004
8:25 am
11332
Steve, it should be possible to get a mock class to pretend to be another final class using a special classloader. See my submission in the files section. -...
Neil Swingler
neil_swingler
Online Now Send Email
Jul 1, 2004
9:17 pm
11333
Thanks. I'm actually wondering whether it's a good idea to mock a final class. It seems to be missing the point a little, since that's the sort of thing I'd...
Steve Freeman
smg_freeman
Offline Send Email
Jul 1, 2004
10:22 pm
11334
Hi I am Virendra Balaut new to this group I need some help on httpunit any of u have some tutorial study material or links related to this (mainly testing...
vbalaut
Offline Send Email
Jul 2, 2004
3:00 am
11335
Hi I am Virendra Balaut new to this group I need some help on httpunit any of u have some tutorial study material or links related to this (mainly testing...
vbalaut
Offline Send Email
Jul 2, 2004
3:02 am
11336
Hi junit members, Can u tell me how to test multiple parameters(taken as input from XML file) thru asserts so that if one fails, it should prompt the error and...
Saket Arora
luvdecentgal...
Offline Send Email
Jul 2, 2004
3:04 am
11337
I would like a decorator in my tests for run the methods setUp and tearDown just one time for all methods in the test case. I know that exist a TestDecorator...
Elaine Prata
nanyprata
Offline Send Email
Jul 2, 2004
3:05 am
11338
... Hi, David. I just looked at the Student Demo, and I would like to commend you and your team on a very neat project. You have done free of charge part of...
J. B. Rainsberger
nails762
Offline Send Email
Jul 2, 2004
3:20 am
11339
... Which freely-available tutorials on the web have you read so far? -- J. B. Rainsberger, Diaspar Software Services http://www.diasparsoftware.com :: +1 416...
J. B. Rainsberger
nails762
Offline Send Email
Jul 2, 2004
3:20 am
11340
... Apparently some extension of JUnit allows this. I can't remember the name, because I don't /want/ multiple assertion failures per test. If you search the...
J. B. Rainsberger
nails762
Offline Send Email
Jul 2, 2004
3:21 am
11341
... Use TestSetup class MyTestCase { public static Test suite() { TestSuite suite = new TestSuite(MyTestCase.class); TestSetup oneTimeSetup = new...
J. B. Rainsberger
nails762
Offline Send Email
Jul 2, 2004
3:24 am
11342
Hi David, Would it be possible to download a jar archive instead of an exe file? I would be happy to try JAM*Tester under Linux. Daniel ... [Non-text portions...
Daniel Le Berre
leberre@...
Send Email
Jul 2, 2004
9:36 am
11343
I have just come back from a great JavaOne. I was concerned that my presentation on unit testing "Beyond JUnit - The Future of Developer Testing for Java"...
albsavoia
Offline Send Email
Jul 2, 2004
11:18 pm
11344
I encountered a problem when I implemented two TestCase's that both used a certain native method from a JNI-based class. Each TestCase passes when run by...
t7p76n
Offline Send Email
Jul 2, 2004
11:19 pm
11345
... Your library doesn't like being reloaded within the same JVM, it appears. Structure your tests in such a way that that doesn't happen. For example, push...
J. B. Rainsberger
nails762
Offline Send Email
Jul 2, 2004
11:37 pm
11346
... Sounds good, Alberto. Congratulations. I'm glad you had such a positive experience. It bodes well for the community and gives me hope. -- J. B....
J. B. Rainsberger
nails762
Offline Send Email
Jul 2, 2004
11:38 pm
11347
... It was a great talk! Mike...
Mike Clark
clarkware
Offline Send Email
Jul 2, 2004
11:46 pm
11348
Hi All, Could anyone give me suggestions as to which is a better way of feeding test data to a test case? as of now i have a TestData.java class where i set...
mithun aiyanna
aiyannakn
Offline Send Email
Jul 3, 2004
3:13 pm
11349
... It looks like you want to run one test for many rows of data. If so, look at the Parameterized Test Case pattern, either online or in the book /JUnit...
J. B. Rainsberger
nails762
Offline Send Email
Jul 5, 2004
3:53 pm
11350
Hello, Summary: Can a parameter be passed into a TestSuite? Background: I would like to use Junit to unit test grid services, that is I would like the service...
Julie McCabe
mc_julie_mccabe
Offline Send Email
Jul 5, 2004
4:03 pm
11351
Hi Mithun, The general assumption is that modifying an XML to change the test case parameters is easier than changing the Java code. You can easily transform a...
Ramanand Hegde
rhegde@...
Send Email
Jul 5, 2004
4:03 pm
11352
J. B. Rainsberger, the methods doOneTimeSetUp() and doOneTimeTearDown() may be write? How? Sorry, but I don't understand this example... Thank you anyway ...
Elaine Prata
nanyprata
Offline Send Email
Jul 5, 2004
4:04 pm
11353
... Using FIT/FitNesse for such test cases is even easier. www.fitnesse.org -- J. B. Rainsberger, Diaspar Software Services http://www.diasparsoftware.com ::...
J. B. Rainsberger
nails762
Offline Send Email
Jul 5, 2004
4:08 pm
11354
... You write the code to replace those methods. They represent the code you want to set up and tear down once for the test suite. -- J. B. Rainsberger, ...
J. B. Rainsberger
nails762
Offline Send Email
Jul 5, 2004
4:09 pm
11355
... Yes, but not directly. ... Your test will have to grab that data from somewhere, and there are a number of useful "somewheres": 1. a properties file 2. a...
J. B. Rainsberger
nails762
Offline Send Email
Jul 5, 2004
4:11 pm
11356
Hello, Thanks for the quick response. I can not locate information about the Parameterized Test Case - all I can find is that it should be in the Junit...
mc_julie_mccabe
Offline Send Email
Jul 5, 2004
5:09 pm
11357
... Sadly no, and the JUnit archive UI is so annoying that I don't have the patience to look. ... That's a good start. If you get 3 or more properties, switch...
J. B. Rainsberger
nails762
Offline Send Email
Jul 5, 2004
5:15 pm
11358
... I'll second that. I bought it through Manning's Early Access Program and it is an excellent book. It consists of every interesting topic discussed on this...
koss@...
Send Email
Jul 6, 2004
7:16 am
11359
Hello JUnit group, Ive run into a problem when testing a testcase from ANT. When i am running the test from command line, everything is fast and the test is ...
mobile_fhx
Offline Send Email
Jul 6, 2004
1:21 pm
11360
Hi guys, Thanks for reading this. I experience the following problem with JUnit. My Company developes a Web Service that receives XML queries. Some of the...
hedgi
Offline Send Email
Jul 6, 2004
1:21 pm
Messages 11331 - 11360 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