Emanuela, Have you tried with junit-4.8.2.jar? Do you have the same problem? David...
23160
David Saff
dsaff
Jan 19, 2011 3:00 pm
Emanuela, Please include the user group on each mail by using "reply to all", so other people get a chance to help. What happens if you run jar tf...
23161
patrick doran-wu
pdoranwu
Jan 19, 2011 10:51 pm
Hi, Problem fixed. I did not completely convert over from junit3 to junit4. I had the testclass still inheriting from junit3 TestCase. It all works now. Thanks...
23162
Emanuela Bertelli
manuspa_72@...
Jan 20, 2011 10:10 am
Sorry but not work again see the message error: C:\TOOL_TEST\JUnit\junit4.9b2>"C:92;Program Files (x86)\Java92;jre692;bin\java.exe" or g.junit.runner.JUnitCore...
23163
David Saff
dsaff
Jan 20, 2011 2:03 pm
Emanuela, Were you able to find the jar tool, and use it to find the contents of the jar on your classpath? David Saff...
23164
David Saff
dsaff
Jan 20, 2011 3:10 pm
Emanuela, I'm afraid I'm out of ideas. When I'm at a computer later, I'll double-check that the jar is well-formed. In the meantime, maybe people who have...
23165
Murat
jmc3631
Jan 20, 2011 3:29 pm
Hi Emanuela, the jar tool (jar.exe) is in the bin/ folder of your JDK installation. Note that you require a JDK, as it is not included in an JRE. Regards, ...
23166
David Saff
dsaff
Jan 20, 2011 4:39 pm
Emanuela, You're likely to get more answers if you keep CC'ing the mailing list by using "Reply to All". Can you try using the -cp flag to the java command to...
23167
pdoranwu
Jan 21, 2011 12:07 am
Hi, Problem fixed. I did not completely convert over from junit3 to junit4. I had the testclass still inheriting from junit3 TestCase. It all works now. Thanks...
23168
Kent Beck
kentlbeck
Jan 21, 2011 6:20 pm
Just to make sure y'all know this isn't hanging, we're discussing what to do next. Kent ... [Non-text portions of this message have been removed]...
23169
albertkao3
Jan 21, 2011 7:29 pm
The following code has this error when compiled in jdk6 & Eclipse: Implicit super constructor TestCase() is not visible. Must explicitly invoke another...
23170
David Saff
dsaff
Jan 21, 2011 7:53 pm
Do you know what version of JUnit you're compiling against? TestCase() has been public for a very long time. David Saff...
23171
albertkao
albertkao3
Jan 21, 2011 8:26 pm
... -- View this message in context: http://old.nabble.com/Junit3-error%3A-Implicit-super-constructor-TestCase%28%29-is-not-visible-tp30724419p30728622.html ...
23172
Mark Thornton
mark_p_thornton
Jan 21, 2011 8:38 pm
I have written a simple custom selector for ANT. Used as follows <batchtest todir="target/junit"> <fileset dir="${test-classes}"> <custom...
23173
David Saff
dsaff
Jan 21, 2011 8:43 pm
Albert, I don't quite understand/remember what's going on here... ... Where is this error being reported? ... Do you have other classes that extend TestCase,...
23174
albertkao
albertkao3
Jan 21, 2011 10:07 pm
The following code has this error when compiled in junit 3.8.2 & jdk 6 & Eclipse 3.3.2: cannot find symbol [javac] symbol : constructor TestCase() [javac]...
23175
David Saff
dsaff
Jan 22, 2011 12:01 am
Albert, Have you tried the debugging steps from my last e-mail? Thanks, David Saff...
23176
David Saff
dsaff
Jan 22, 2011 1:55 am
Hello, everyone. We're happy to announce the release of JUnit 4.9b2. This release's theme is Test-class and suite level Rules. More information linked from ...
23177
Gilles Scokart
gscokart
Jan 22, 2011 11:40 am
Sounds interresting. You should push that forward in the ant community mailing list [1] and provide the patch on the bug/enhacement tracking tool [2] [1]...
23178
Emanuela Bertelli
manuspa_72@...
Jan 24, 2011 5:13 pm
Problem when installation of a last version "junit4.9b2"!! I have install in the C:\TOOL_TEST\JUnit\junit4.9b2 ... exit. ... Is possible help me, Thank...
23179
sdrothco
Jan 24, 2011 10:29 pm
I have created a custom JUnit 4.8 category (and an associated suite to run this category), as well as an associated annotation which must be set. I need to...
23180
Bogdan Mocanu
bogdanmocanu...
Jan 24, 2011 10:32 pm
Hi Emanuela, you have a problem in your CLASSPATH, in the name of your JAR file. You typed "junit4.9b2.jar" but it must be "junit-4.9b2.jar". Once you fix this...
23181
Emanuela Bertelli
manuspa_72@...
Jan 25, 2011 1:02 pm
Now work!!! tahnk you so much:-)))))) But there is again an error.......... sorry see: C:\TOOL_TEST\JUnit\junit4.9b2>"C:92;Program Files...
23182
Bogdan Mocanu
bogdanmocanu...
Jan 25, 2011 1:02 pm
Why did you changed the call in the command line? Why did you added the "-cp" parameter? That sets a custom classpath and it makes you env CLASSPATH to be...
23183
Emanuela Bertelli
manuspa_72@...
Jan 25, 2011 1:02 pm
Thank for your quickly help you were right ... I corrected the error but still doesn't work see below C:\TOOL_TEST\JUnit\junit4.9b2>set ...
23184
Emanuela Bertelli
manuspa_72@...
Jan 25, 2011 1:02 pm
Hi Bodan and everyone, I have fix my CLASSPATH, but the result don’t change…. This installation of Junit doesn’t work, see below: ...
23185
Dale Emery
dhemery...
Jan 25, 2011 1:03 pm
Hi Steve, ... It isn't clear to me whether you're trying to test your test classes, filter them, or something else. If you're trying to filter them, perhaps my...
23186
David Saff
dsaff
Jan 25, 2011 1:08 pm
Emanuela, This will likely resolve itself if you replace this element of your classpath: C:\TOOL_TEST\JUnit\junit4.9b292;junit92;tests With this: ...
23187
sdrothco
Jan 25, 2011 7:37 pm
Thanks Dale. Actually, I want to test my test class annotations. For example, I have a category called FailingTests. I have created an annotation called...
23188
David Saff
dsaff
Jan 25, 2011 7:53 pm
Steve, Do you have a custom Suite class? You could use that to loop through the included test cases and validate each one. David Saff...