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.blocks;
21
22 import static com.puppycrawl.tools.checkstyle.checks.blocks.EmptyBlockCheck.MSG_KEY_BLOCK_EMPTY;
23 import static com.puppycrawl.tools.checkstyle.checks.blocks.EmptyBlockCheck.MSG_KEY_BLOCK_NO_STATEMENT;
24
25 import org.junit.jupiter.api.Test;
26
27 import com.puppycrawl.tools.checkstyle.AbstractExamplesModuleTestSupport;
28
29 public class EmptyBlockCheckExamplesTest extends AbstractExamplesModuleTestSupport {
30 @Override
31 protected String getPackageLocation() {
32 return "com/puppycrawl/tools/checkstyle/checks/blocks/emptyblock";
33 }
34
35 @Test
36 public void testExample1() throws Exception {
37 final String[] expected = {
38 "14:34: " + getCheckMessage(MSG_KEY_BLOCK_NO_STATEMENT, "for"),
39 "17:9: " + getCheckMessage(MSG_KEY_BLOCK_NO_STATEMENT, "try"),
40 };
41
42 verifyWithInlineConfigParser(getPath("Example1.java"), expected);
43 }
44
45 @Test
46 public void testExample2() throws Exception {
47 final String[] expected = {
48 "21:9: " + getCheckMessage(MSG_KEY_BLOCK_EMPTY, "try"),
49 };
50
51 verifyWithInlineConfigParser(getPath("Example2.java"), expected);
52 }
53
54 @Test
55 public void testExample3() throws Exception {
56 final String[] expected = {
57 "19:16: " + getCheckMessage(MSG_KEY_BLOCK_NO_STATEMENT, "case"),
58 "22:15: " + getCheckMessage(MSG_KEY_BLOCK_NO_STATEMENT, "case"),
59 "24:15: " + getCheckMessage(MSG_KEY_BLOCK_NO_STATEMENT, "case"),
60 "27:17: " + getCheckMessage(MSG_KEY_BLOCK_NO_STATEMENT, "case"),
61 "44:17: " + getCheckMessage(MSG_KEY_BLOCK_NO_STATEMENT, "case"),
62 "45:18: " + getCheckMessage(MSG_KEY_BLOCK_NO_STATEMENT, "case"),
63 };
64
65 verifyWithInlineConfigParser(getNonCompilablePath("Example3.java"), expected);
66 }
67 }