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.IllegalThrowsCheck.MSG_KEY;
23
24 import org.junit.jupiter.api.Test;
25
26 import com.puppycrawl.tools.checkstyle.AbstractExamplesModuleTestSupport;
27
28 public class IllegalThrowsCheckExamplesTest extends AbstractExamplesModuleTestSupport {
29 @Override
30 protected String getPackageLocation() {
31 return "com/puppycrawl/tools/checkstyle/checks/coding/illegalthrows";
32 }
33
34 @Test
35 public void testExample1() throws Exception {
36 final String[] expected = {
37 "13:20: " + getCheckMessage(MSG_KEY, "RuntimeException"),
38 "15:20: " + getCheckMessage(MSG_KEY, "Error"),
39 "16:20: " + getCheckMessage(MSG_KEY, "Throwable"),
40 };
41
42 verifyWithInlineConfigParser(getPath("Example1.java"), expected);
43 }
44
45 @Test
46 public void testExample2() throws Exception {
47 final String[] expected = {
48 "19:20: " + getCheckMessage(MSG_KEY, "NullPointerException"),
49 };
50
51 verifyWithInlineConfigParser(getPath("Example2.java"), expected);
52 }
53
54 @Test
55 public void testExample3() throws Exception {
56 final String[] expected = {
57 "16:20: " + getCheckMessage(MSG_KEY, "Error"),
58 "17:20: " + getCheckMessage(MSG_KEY, "Throwable"),
59 };
60
61 verifyWithInlineConfigParser(getPath("Example3.java"), expected);
62 }
63
64 @Test
65 public void testExample4() throws Exception {
66 final String[] expected = {
67 "15:20: " + getCheckMessage(MSG_KEY, "RuntimeException"),
68 "17:20: " + getCheckMessage(MSG_KEY, "Error"),
69 "18:20: " + getCheckMessage(MSG_KEY, "Throwable"),
70 "21:35: " + getCheckMessage(MSG_KEY, "Error"),
71 };
72
73 verifyWithInlineConfigParser(getPath("Example4.java"), expected);
74 }
75 }