Re: ant and junit assertion error

2008-07-31 Thread tacman
I have managed to fix the problem only minutes ago... I have two versions of Ant installed on my pc - one installed manually (1.6.5), one installed by Netbeans 6.1. (ant 1.7) The path in my environmental variable settings pointed to Ant 1.6.5's bin folder. I changed it to point to 1.7's bin folder

ant and junit assertion error

2008-07-31 Thread tacman
Hi I am using JUnit and Ant to run/build/test my java code. Whenever I try to run a test class (ant test) I receive the following error: junit.framework.AssertionErrorFailed => no tests found in [etc] The test class: 1. Imports the junit framework 2. has @Test before every test method The