summaryrefslogtreecommitdiff
path: root/plugins/InspectionGadgets/testsrc/com/intellij/codeInspection/BooleanMethodInvertedTest.java
blob: ea0961213d00c748d0302b6ebb3cfb2a33535443 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package com.intellij.codeInspection;

import com.siyeh.ig.IGInspectionTestCase;
import com.intellij.codeInspection.booleanIsAlwaysInverted.BooleanMethodIsAlwaysInvertedInspection;

/**
 * User: anna
 * Date: 06-Jan-2006
 */
public class BooleanMethodInvertedTest extends IGInspectionTestCase {

  public void testUnusedMethod() throws Exception {
    doTest();
  }

  public void testNotAlwaysInverted() throws Exception {
    doTest();
  }

  public void testAlwaysInverted() throws Exception {
    doTest();
  }

  public void testAlwaysInvertedByRange() throws Exception {
    doTest(true);
  }

  public void testFromExpression() throws Exception {
    doTest();
  }

  public void testAlwaysInvertedInScope() throws Exception {
    doTest();
  }

  public void testHierarchyNotAlwaysInverted() throws Exception {
    doTest();
  }

  public void testDeepHierarchyNotAlwaysInverted() throws Exception {
    doTest();
  }

  public void testDeepHierarchyNotAlwaysInvertedInScope() throws Exception {
    doTest();
  }

  public void testDeepHierarchyAlwaysInverted() throws Exception {
    doTest();
  }

  public void testOverrideLibrary() throws Exception {
    doTest();
  }

  private void doTest() throws Exception {
    doTest(false);
  }

  private void doTest(boolean checkRange) throws Exception {
    doTest("invertedBoolean/" + getTestName(true), new BooleanMethodIsAlwaysInvertedInspection(), checkRange);
  }
}