In our programmer integration tests that actually hit an external db, we just made the tearDown implementation never fail. tearDown() is called after each...
This I can do. Thanks for the suggestion. -Brian ... that ... catch ... know it ... transaction ... would ... functions ... the ... missing ... be ... can't ...
I suppose you could create a static reference to the TestResult and check it in you teardown, but that is a hack I would avoid unless this happens to you...
Test class contains a method similar to public static Test suite() { TestSuite suite= new TestSuite(); suite.addTest(new MoneyTest("testMoneyEquals")); ...
i would like to know java programmers in the sf area who would like meet in sf to work thru the book "Java Tools for eXtreme Programming" by Hightower. i have...
The difference is how you are presented with results. The textual test runner displays your test results in text only. The graphical test runner is a bit...
... I bough the same book last year. While I was flipping through some pages in the bookshop, I thought it was a great book. So I bought it straightaway. ...
Is there a way I can invoke my testing (ADTTest): java junit.swingui.TestRunner junit.samples.ADTTest from an HTML object or applet tag (somthing like this): ...
6617
sathishkumar chandra
cskleather@...
Jan 7, 2003 4:48 pm
Hi could u please give some details about the book on ANT ... it will be great ... Regards CS ... __________________________________________________ Do you...
6618
sathishkumar chandra
cskleather@...
Jan 7, 2003 4:48 pm
Thanks brian .... ... __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. ...
Can anyone shed light on this problem? When my tests receive exceptions which are thrown (all my cases throw Exception), the error state is reported by JUnit,...
I'm not sure, but if you can post the offending test, we'll better be able to help. So said Kevin Klinemeier on 1/7/2003 -------------------- ... fail ... ...
Does anyone know if there is a group specifically for HttpUnit? Or does it get mixed in here on the rare occasion? Thanks in advance. -Chris O'Connor ...
When are startTest(...) and endTest(...) supposed to be called?!?!? I can't figure out (Without rewriting things) what I'm supposed to do. Trying to extend...
Junit Group, This is more of a design question. I was inherited to take over testing a client / server application. The test cases were all written in xml (a...
You might consider an extension to the TestCase per file that you need to test. So for the example you mentioned, you would extend TestCase with your own...
I am trying to run some JUnit tests against a service that is started via the main() method. This process must be started before I can run my JUnit test cases....
Have you been looking through the source? I would think that you could find out exactly when they're called that way. Have you tried that and can't understand,...
There does not appear to be a Yahoo! group, but there are mailing lists. Google will help you find them, as will http://www.httpunit.org. I think the answer...
Do the tests and the service need to run in the same process? If not, manually start the service process, then run the tests. Alternatively, why not just call...
On Wed, 8 Jan 2003 16:08:41 -0600, "Rohrbach, William A." ... Well, there are a few issues here: Q. Do you need the service to be invoked only once per set of...
After exchanging email with Russell Gold httpunit's creator he pointed to the list at: http://lists.sourceforge.net/mailman/listinfo/httpunit-develop Which...
JUnit (3.8.1) counts the number of test methods that pass/fail. With some of the test generation methods, such as JUnitDoclet, empty methods are generated (a...