package @PACKAGE@; import junit.framework.TestCase; /** * This is a simple JUnit test case to ensure that the environment is okay. * * @author Archimedes Trajano * @version $Id: SanityTest.java,v 1.1 2004/02/27 06:22:26 evenisse Exp $ */ public class SanityTest extends TestCase { public void testSanity() { assertEquals( "test", "test" ); } }