Test Name: simpeltest.java
Location: com.prog.simpletest
import org.junit.test
public class simpletest
{
@Test
public void check()
{
assert(true);
}
}
build.xml
how do I set this guy (build.xml) up to run the test?
|
You need to setup ant build properly. Have a
|
||||
|
|
|
Use the JUnit task. |
|||
|
|
|
This documentation for JUnit Task should be helpful. It is what I used to help me setup junit tests in Ant. This is what my ant script basically looked like:
|
||||
|
|
.) :public class simpletest.java. Remove the.javapart from the class declaration. – Zabba Nov 2 '11 at 14:29