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.javadoc;
21
22 import static com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocVariableCheck.MSG_JAVADOC_MISSING;
23
24 import org.junit.jupiter.api.Test;
25
26 import com.puppycrawl.tools.checkstyle.AbstractExamplesModuleTestSupport;
27
28 public class JavadocVariableCheckExamplesTest extends AbstractExamplesModuleTestSupport {
29 @Override
30 protected String getPackageLocation() {
31 return "com/puppycrawl/tools/checkstyle/checks/javadoc/javadocvariable";
32 }
33
34 @Test
35 public void testExample1() throws Exception {
36 final String[] expected = {
37 "12:3: " + getCheckMessage(MSG_JAVADOC_MISSING),
38 "18:3: " + getCheckMessage(MSG_JAVADOC_MISSING),
39 "19:3: " + getCheckMessage(MSG_JAVADOC_MISSING),
40 "20:15: " + getCheckMessage(MSG_JAVADOC_MISSING),
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(MSG_JAVADOC_MISSING),
49 };
50
51 verifyWithInlineConfigParser(getPath("Example2.java"), expected);
52 }
53
54 @Test
55 public void testExample3() throws Exception {
56 final String[] expected = {
57 "14:3: " + getCheckMessage(MSG_JAVADOC_MISSING),
58 "22:15: " + getCheckMessage(MSG_JAVADOC_MISSING),
59 };
60
61 verifyWithInlineConfigParser(getPath("Example3.java"), expected);
62 }
63
64 @Test
65 public void testExample4() throws Exception {
66 final String[] expected = {
67 "14:3: " + getCheckMessage(MSG_JAVADOC_MISSING),
68 "20:3: " + getCheckMessage(MSG_JAVADOC_MISSING),
69 "21:3: " + getCheckMessage(MSG_JAVADOC_MISSING),
70 "22:15: " + getCheckMessage(MSG_JAVADOC_MISSING),
71 };
72
73 verifyWithInlineConfigParser(getPath("Example4.java"), expected);
74 }
75 }