summaryrefslogtreecommitdiff
path: root/plugins/IntentionPowerPak/test/com/siyeh/ipp/junit/create_assert/AssertFalse.java
blob: 76bddf465b6fa3ce70bf5a8766f883f0ceb401ac (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() {
    !result()<caret>
  }

  boolean result() {
    return false;
  }
}