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.whitespace;
21
22 import static com.puppycrawl.tools.checkstyle.checks.whitespace.WhitespaceAfterCheck.MSG_WS_NOT_FOLLOWED;
23
24 import org.junit.jupiter.api.Test;
25
26 import com.puppycrawl.tools.checkstyle.AbstractExamplesModuleTestSupport;
27
28 public class WhitespaceAfterExamplesTest extends AbstractExamplesModuleTestSupport {
29
30 @Override
31 public String getPackageLocation() {
32 return "com/puppycrawl/tools/checkstyle/checks/whitespace/whitespaceafter";
33 }
34
35 @Test
36 public void testExample1() throws Exception {
37 final String[] expected = {
38 "18:12: " + getCheckMessage(MSG_WS_NOT_FOLLOWED, ";"),
39 "21:23: " + getCheckMessage(MSG_WS_NOT_FOLLOWED, "if"),
40 "24:13: " + getCheckMessage(MSG_WS_NOT_FOLLOWED, ","),
41 "27:5: " + getCheckMessage(MSG_WS_NOT_FOLLOWED, "for"),
42 "30:5: " + getCheckMessage(MSG_WS_NOT_FOLLOWED, "try"),
43 "33:12: " + getCheckMessage(MSG_WS_NOT_FOLLOWED, "catch"),
44 "39:5: " + getCheckMessage(MSG_WS_NOT_FOLLOWED, "return"),
45 "44:21: " + getCheckMessage(MSG_WS_NOT_FOLLOWED, "yield"),
46 };
47
48 verifyWithInlineConfigParser(getPath("Example1.java"), expected);
49 }
50
51 @Test
52 public void testExample2() throws Exception {
53 final String[] expected = {
54 "20:12: " + getCheckMessage(MSG_WS_NOT_FOLLOWED, ";"),
55 "26:13: " + getCheckMessage(MSG_WS_NOT_FOLLOWED, ","),
56 };
57
58 verifyWithInlineConfigParser(getPath("Example2.java"), expected);
59 }
60
61 }