package template; import static org.junit.Assert.assertEquals; /** A simple test case for XXX. * Note: in Eclipse you can use the New Class wiz to make JUnit tests. * This class' name should be XXXTest, where XXX is the class it tests. */ public class junitTest { protected String f; // This needs an @Test annotation to be run. public void testXXX() { f = "..."; assertEquals("Ian Darwin", f); } }