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