Mega Code Archive

 
Categories / Java Tutorial / JUnit
 

AssertFalse([String message], boolean condition)

import junit.framework.TestCase; public class TestLargest extends TestCase {   public TestLargest(String name) {     super(name);   }   public void testEmpty() {     assertFalse("should be same", true);   } }