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.AnnotationLocationCheck.MSG_KEY_ANNOTATION_LOCATION_ALONE;
23
24 import org.junit.jupiter.api.Test;
25
26 import com.puppycrawl.tools.checkstyle.AbstractExamplesModuleTestSupport;
27
28 public class AnnotationLocationExamplesTest extends AbstractExamplesModuleTestSupport {
29 @Override
30 public String getPackageLocation() {
31 return "com/puppycrawl/tools/checkstyle/checks/annotation/annotationlocation";
32 }
33
34 @Test
35 public void testExample1() throws Exception {
36 final String[] expected = {
37 "33:3: " + getCheckMessage(MSG_KEY_ANNOTATION_LOCATION_ALONE, "SuppressWarnings"),
38 "35:3: " + getCheckMessage(MSG_KEY_ANNOTATION_LOCATION_ALONE, "SuppressWarnings"),
39 "37:12: " + getCheckMessage(MSG_KEY_ANNOTATION_LOCATION_ALONE, "Mock"),
40
41 };
42
43 verifyWithInlineConfigParser(getPath("Example1.java"), expected);
44 }
45
46 @Test
47 public void testExample2() throws Exception {
48 final String[] expected = {
49
50 };
51
52 verifyWithInlineConfigParser(getPath("Example2.java"), expected);
53 }
54
55 @Test
56 public void testExample3() throws Exception {
57 final String[] expected = {
58 "25:3: " + getCheckMessage(MSG_KEY_ANNOTATION_LOCATION_ALONE, "Override"),
59 "37:3: " + getCheckMessage(MSG_KEY_ANNOTATION_LOCATION_ALONE, "Nonnull"),
60 "37:12: " + getCheckMessage(MSG_KEY_ANNOTATION_LOCATION_ALONE, "Mock"),
61 };
62
63 verifyWithInlineConfigParser(getPath("Example3.java"), expected);
64 }
65
66 @Test
67 public void testExample4() throws Exception {
68 final String[] expected = {
69 "36:3: " + getCheckMessage(MSG_KEY_ANNOTATION_LOCATION_ALONE, "SuppressWarnings"),
70 };
71
72 verifyWithInlineConfigParser(getPath("Example4.java"), expected);
73 }
74 }