summaryrefslogtreecommitdiff
path: root/plugins/IntentionPowerPak/test/com/siyeh/ipp/junit/create_assert/AssertFalse_after.java
blob: 6c1ad31f57a62dd586ec6df638c8836f59b81e5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import junit.framework.TestCase;

public class AssertFalse extends TestCase {

  public void testOne() {
      assertFalse(result());
  }

  boolean result() {
    return false;
  }
}