package example.web; import junit.framework.TestCase; /** * This is a simple JUnit test case to ensure that the environment is okay. * * @author Archimedes Trajano * @version $Id$ */ public class SanityTest extends TestCase { public void testSanity() { assertEquals( "test", "test" ); } }