package org.opennms; import junit.framework.TestCase; import junit.framework.Assert; public class AStandardNonGwtTest extends TestCase { public AStandardNonGwtTest() { } public void testSomething() { // our favorite kind of test, assert true, this always succeeds! Assert.assertTrue(true); } }