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.CovariantEqualsCheck.MSG_KEY;
23
24 import org.junit.jupiter.api.Test;
25
26 import com.puppycrawl.tools.checkstyle.AbstractExamplesModuleTestSupport;
27 import com.puppycrawl.tools.checkstyle.utils.CommonUtil;
28
29 public class CovariantEqualsCheckExamplesTest extends AbstractExamplesModuleTestSupport {
30 @Override
31 protected String getPackageLocation() {
32 return "com/puppycrawl/tools/checkstyle/checks/coding/covariantequals";
33 }
34
35 @Test
36 public void testExample1() throws Exception {
37 final String[] expected = {
38 "13:18: " + getCheckMessage(MSG_KEY, "covariant.equals"),
39 "18:20: " + getCheckMessage(MSG_KEY, "covariant.equals"),
40 };
41
42 verifyWithInlineConfigParser(
43 getNonCompilablePath("Example1.java"), expected);
44 }
45
46 @Test
47 public void testExample2() throws Exception {
48 final String[] expected = CommonUtil.EMPTY_STRING_ARRAY;
49 verifyWithInlineConfigParser(
50 getNonCompilablePath("Example2.java"), expected);
51 }
52 }