Mega Code Archive
Categories
/
Java by API
/
Junit Framework
Assert
import junit.framework.TestCase; public class TestLargest extends TestCase { public TestLargest(String name) { super(name); } public void testEmpty() { assertTrue("should be same", true); } }