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