Oh...so that'll throw any uncaught exceptions up and fail on it's own? SWEET! THANKS! :) -Eric ... a...
6331
Jason Rogers
jacaetev
Dec 2, 2002 2:43 am
I stand corrected, that is a possibility. ... -- Jason Rogers...
6332
Durham David Cntr 805...
David.Durham1@...
Dec 2, 2002 3:04 pm
I'm curious why you're not using ant for this?...
6333
Joshua Fox
joshua_t_fox
Dec 2, 2002 7:27 pm
I'd like to run the same test , testFoo() in class BarTest, many times, each time passing in a somewhat different configuration. In the excellent add-on...
6334
Vikas Malla
malla6um
Dec 2, 2002 7:27 pm
I use ant task <batchtest> to run a series of tests for my application. Off late, I have been getting the following error that causes my tests to fail, that...
6335
Joshua Fox
joshua_t_fox
Dec 2, 2002 7:27 pm
I'd like to run the same test , testFoo() in class BarTest, many times, each time passing in a somewhat different configuration. In the excellent add-on...
6336
Wolfgang Egger
beuys1234
Dec 2, 2002 7:27 pm
Servus Nahan, ... From: Paris, Nathan x66165 [mailto:nathan_paris@...] Sent: Friday, November 29, 2002 9:44 PM To: 'junit@yahoogroups.com' Subject: RE:...
6337
naani78
Dec 2, 2002 7:28 pm
Hi all, I have a method public boolean parse(String param). I wanna test this method repeatedly with variaous types of input in my JUunit class. I have tried...
6338
ejgabri
Dec 2, 2002 7:28 pm
Hi! Is there any way that you can get JUnit not to start its own classloader? I have an (signed) applet, that will download some jar files over the net and...
6339
Tambascio, Larry
ltambascio@...
Dec 2, 2002 7:42 pm
Hi Jonas, I believe that if you use the textui version of the TestRunner, then that should eliminate any class loader "issues" you (or more correctly JUnit)...
6340
Paris, Nathan ...
nsparis
Dec 2, 2002 7:54 pm
You could just create a method foo(param) that each test calls with just different paramaters: public void testConfig1() { foo( params for config1 ); } public...
6341
Chermside, Michael
mcherm
Dec 2, 2002 7:54 pm
... What I do is to make it one big test. I'll still see if the whole thing failed or not, and if it fails then the failure message and the stack trace will...
6342
rab6687
Dec 2, 2002 7:54 pm
Although you don't say where you installed your JUnit, I suspect that you have the same problem that I did. I originally installed in "C:\Program...
6343
Chermside, Michael
mcherm
Dec 2, 2002 10:16 pm
... For me, something like this would work (WARNING: Untested code!). I'm pretending that parse() counts whitespace-separated bits, but obviously it could do...
6344
J. B. Rainsberger
nails762
Dec 2, 2002 11:19 pm
... own? ... You're welcome. Some people claim that there is no "real" difference between failures and errors, but clearly there are differences. The primary...
6345
J. B. Rainsberger
nails762
Dec 2, 2002 11:22 pm
... test. ... systems) ... experience, ... and ... as ... If you need the tests to run in a certain order, build the test suite yourself. Remember, folks:...
6346
J. B. Rainsberger
nails762
Dec 2, 2002 11:22 pm
... for ... Post your code and let's work on it as a group....
6347
J. B. Rainsberger
nails762
Dec 2, 2002 11:25 pm
... A quick show of hands: how many of us ask questions on newsgroups and don't need urgent help from time to time? I think it's implied....
6348
Scott Stirling
jrun5
Dec 3, 2002 5:38 am
This sort of thing is usually indicative of a JVM bug, which usually means you should upgrade your JVM/JDK to the latest patch release for your major version....
6349
Vladimir R. Bossicard
vbossica
Dec 3, 2002 9:11 am
... -- Vladimir R. Bossicard www.bossicard.com...
6350
douchebag_ca
Dec 3, 2002 2:18 pm
... See http://sourceforge.net/projects/gsbase OrderedTestSuite for a solution that enables you to specify the order of some tests while using reflection to...
6351
Tamir Salomon
s5276416@...
Dec 3, 2002 2:18 pm
Hello. What about testing over a TEST DB which it's state is always known. Each test that runs, ROLLBACK the changes made. Meaning - testing the insert method...
6352
Parag Shetye
paragsh
Dec 3, 2002 2:18 pm
This was supposed to be fixed in 1.4.0_02 but in the comments at the bottom it says "i get this problem even with j2se1.4.1!". Maybe try with 1.4.0_02 and see...
6353
J. B. Rainsberger
nails762
Dec 3, 2002 3:47 pm
So said douchebag_ca on 2002-12-03 ... you ... suite ... a ... Yes. Mike and I found the need for it one day and, conscientious as he is, he wrote it that...
6354
Day, Jem BGI WAC
vladti
Dec 3, 2002 5:11 pm
Also : take a look at dbUnit. http://www.dbunit.org/ ... From: Tamir Salomon [mailto:s5276416@...] Sent: Tuesday, December 03, 2002 1:15 AM To:...
6355
Mike Clark
clarkware
Dec 4, 2002 1:49 am
<shameless plug> If you're interested in how I use JUnitPerf for performance testing EJBs, the "Bitter Tunes" chapter of our upcoming book "Bitter EJB" is up ...
6356
Joshua Fox
joshua_t_fox
Dec 4, 2002 2:13 pm
In order to run a test that runs repeatedly, with each run being configured differently, I have a class FunctionalTest extends TestCase The constructor takes...
6357
Phillip Chin
pqcbm
Dec 4, 2002 2:13 pm
Hi. Can anyone help me? Does anyone have experience using java.beans.XMLEncoder from JDK 1.4.1_01? If I create an XMLEncoder and then call writeObject() from...
6358
jlmrodriguesfr
Dec 4, 2002 2:13 pm
Thanks so much, it works now... I received one answer to my question and it was a good one ... that ... I ... who ... directories ... to ... graphical ... ...
6359
h3vj
Dec 4, 2002 2:37 pm
Hi Friends, I have JUnit tests suite out of which some suites take about 10 - 15 minutes to run and some take 1 -2 minutes to run. My doubt is that because the...