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.annotation;
21
22 import static com.puppycrawl.tools.checkstyle.checks.annotation.AnnotationUseStyleCheck.MSG_KEY_ANNOTATION_INCORRECT_STYLE;
23 import static com.puppycrawl.tools.checkstyle.checks.annotation.AnnotationUseStyleCheck.MSG_KEY_ANNOTATION_PARENS_MISSING;
24 import static com.puppycrawl.tools.checkstyle.checks.annotation.AnnotationUseStyleCheck.MSG_KEY_ANNOTATION_PARENS_PRESENT;
25 import static com.puppycrawl.tools.checkstyle.checks.annotation.AnnotationUseStyleCheck.MSG_KEY_ANNOTATION_TRAILING_COMMA_MISSING;
26 import static com.puppycrawl.tools.checkstyle.checks.annotation.AnnotationUseStyleCheck.MSG_KEY_ANNOTATION_TRAILING_COMMA_PRESENT;
27
28 import org.junit.jupiter.api.Test;
29
30 import com.puppycrawl.tools.checkstyle.AbstractExamplesModuleTestSupport;
31
32 public class AnnotationUseStyleCheckExamplesTest extends AbstractExamplesModuleTestSupport {
33
34 @Override
35 public String getPackageLocation() {
36 return "com/puppycrawl/tools/checkstyle/checks/annotation/annotationusestyle";
37 }
38
39 @Test
40 public void testExample1() throws Exception {
41 final String[] expected = {
42 "24:1: " + getCheckMessage(MSG_KEY_ANNOTATION_INCORRECT_STYLE, "COMPACT_NO_ARRAY"),
43 "25:1: " + getCheckMessage(MSG_KEY_ANNOTATION_PARENS_PRESENT),
44 "27:40: " + getCheckMessage(MSG_KEY_ANNOTATION_TRAILING_COMMA_PRESENT),
45 };
46
47 verifyWithInlineConfigParser(getPath("Example1.java"), expected);
48 }
49
50 @Test
51 public void testExample2() throws Exception {
52 final String[] expected = {
53 "16:1: " + getCheckMessage(MSG_KEY_ANNOTATION_INCORRECT_STYLE, "EXPANDED"),
54 "19:1: " + getCheckMessage(MSG_KEY_ANNOTATION_INCORRECT_STYLE, "EXPANDED"),
55 "25:1: " + getCheckMessage(MSG_KEY_ANNOTATION_PARENS_PRESENT),
56 "27:40: " + getCheckMessage(MSG_KEY_ANNOTATION_TRAILING_COMMA_PRESENT),
57
58 };
59
60 verifyWithInlineConfigParser(getPath("Example2.java"), expected);
61 }
62
63 @Test
64 public void testExample3() throws Exception {
65 final String[] expected = {
66 "17:1: " + getCheckMessage(MSG_KEY_ANNOTATION_PARENS_MISSING),
67 "24:1: " + getCheckMessage(MSG_KEY_ANNOTATION_INCORRECT_STYLE, "COMPACT"),
68 "27:1: " + getCheckMessage(MSG_KEY_ANNOTATION_INCORRECT_STYLE, "COMPACT"),
69
70 };
71
72 verifyWithInlineConfigParser(getPath("Example3.java"), expected);
73 }
74
75 @Test
76 public void testExample4() throws Exception {
77 final String[] expected = {
78 "19:34: " + getCheckMessage(MSG_KEY_ANNOTATION_TRAILING_COMMA_MISSING),
79 "24:37: " + getCheckMessage(MSG_KEY_ANNOTATION_TRAILING_COMMA_MISSING),
80
81 };
82
83 verifyWithInlineConfigParser(getPath("Example4.java"), expected);
84 }
85
86 }