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.imports;
21
22 import static com.puppycrawl.tools.checkstyle.checks.imports.UnusedImportsCheck.MSG_KEY;
23
24 import org.junit.jupiter.api.Test;
25
26 import com.puppycrawl.tools.checkstyle.AbstractExamplesModuleTestSupport;
27
28 public class UnusedImportsCheckExamplesTest extends AbstractExamplesModuleTestSupport {
29
30 @Override
31 public String getPackageLocation() {
32 return "com/puppycrawl/tools/checkstyle/checks/imports/unusedimports";
33 }
34
35 @Test
36 public void testExample1() throws Exception {
37 final String[] expected = {
38 "19:8: " + getCheckMessage(MSG_KEY, "java.lang.String"),
39 "22:8: " + getCheckMessage(MSG_KEY, "java.util.Map"),
40 "27:15: " + getCheckMessage(MSG_KEY, "java.lang.Integer.parseInt"),
41 };
42
43 verifyWithInlineConfigParser(getPath("Example1.java"), expected);
44 }
45
46 @Test
47 public void testExample2() throws Exception {
48 final String[] expected = {
49 "21:8: " + getCheckMessage(MSG_KEY, "java.lang.String"),
50 "24:8: " + getCheckMessage(MSG_KEY, "java.util.Map"),
51 "26:8: " + getCheckMessage(MSG_KEY, "java.util.List"),
52 "29:15: " + getCheckMessage(MSG_KEY, "java.lang.Integer.parseInt"),
53 };
54
55 verifyWithInlineConfigParser(getPath("Example2.java"), expected);
56 }
57
58 }