blob: 6c1ad31f57a62dd586ec6df638c8836f59b81e5f [file] [log] [blame]
import junit.framework.TestCase;
public class AssertFalse extends TestCase {
public void testOne() {
assertFalse(result());
}
boolean result() {
return false;
}
}