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.NestedForDepthCheck.MSG_KEY;
23
24 import org.junit.jupiter.api.Test;
25
26 import com.puppycrawl.tools.checkstyle.AbstractExamplesModuleTestSupport;
27
28 public class NestedForDepthCheckExamplesTest extends AbstractExamplesModuleTestSupport {
29 @Override
30 protected String getPackageLocation() {
31 return "com/puppycrawl/tools/checkstyle/checks/coding/nestedfordepth";
32 }
33
34 @Test
35 public void testExample1() throws Exception {
36 final String[] expected = {
37 "22:9: " + getCheckMessage(MSG_KEY, 2, 1),
38 "31:9: " + getCheckMessage(MSG_KEY, 2, 1),
39 "32:11: " + getCheckMessage(MSG_KEY, 3, 1),
40 };
41
42 verifyWithInlineConfigParser(getPath("Example1.java"), expected);
43 }
44
45 @Test
46 public void testExample2() throws Exception {
47 final String[] expected = {
48 "32:11: " + getCheckMessage(MSG_KEY, 3, 2),
49 };
50
51 verifyWithInlineConfigParser(getPath("Example2.java"), expected);
52 }
53 }