1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package com.puppycrawl.tools.checkstyle.checks.coding;
21
22 import static com.puppycrawl.tools.checkstyle.checks.coding.EqualsAvoidNullCheck.MSG_EQUALS_AVOID_NULL;
23 import static com.puppycrawl.tools.checkstyle.checks.coding.EqualsAvoidNullCheck.MSG_EQUALS_IGNORE_CASE_AVOID_NULL;
24
25 import org.junit.jupiter.api.Test;
26
27 import com.puppycrawl.tools.checkstyle.AbstractExamplesModuleTestSupport;
28
29 public class EqualsAvoidNullCheckExamplesTest extends AbstractExamplesModuleTestSupport {
30 @Override
31 protected String getPackageLocation() {
32 return "com/puppycrawl/tools/checkstyle/checks/coding/equalsavoidnull";
33 }
34
35 @Test
36 public void testExample1() throws Exception {
37 final String[] expected = {
38 "17:22: " + getCheckMessage(MSG_EQUALS_AVOID_NULL),
39 "20:32: " + getCheckMessage(MSG_EQUALS_IGNORE_CASE_AVOID_NULL),
40 };
41
42 verifyWithInlineConfigParser(getPath("Example1.java"), expected);
43 }
44
45 @Test
46 public void testExample2() throws Exception {
47 final String[] expected = {
48 "19:22: " + getCheckMessage(MSG_EQUALS_AVOID_NULL),
49 };
50
51 verifyWithInlineConfigParser(getPath("Example2.java"), expected);
52 }
53 }