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 static com.puppycrawl.tools.checkstyle.checks.coding.UnnecessarySemicolonInEnumerationCheck.MSG_SEMI;
23
24 import org.junit.jupiter.api.Test;
25
26 import com.puppycrawl.tools.checkstyle.AbstractExamplesModuleTestSupport;
27
28 public class UnnecessarySemicolonInEnumerationCheckExamplesTest
29 extends AbstractExamplesModuleTestSupport {
30 @Override
31 protected String getPackageLocation() {
32 return "com/puppycrawl/tools/checkstyle/checks/coding/unnecessarysemicoloninenumeration";
33 }
34
35 @Test
36 public void testExample1() throws Exception {
37 final String[] expected = {
38 "13:8: " + getCheckMessage(MSG_SEMI),
39 "16:9: " + getCheckMessage(MSG_SEMI),
40 "19:10: " + getCheckMessage(MSG_SEMI),
41 "22:10: " + getCheckMessage(MSG_SEMI),
42 "27:5: " + getCheckMessage(MSG_SEMI),
43 };
44
45 verifyWithInlineConfigParser(getPath("Example1.java"), expected);
46 }
47
48 @Test
49 public void testExample2() throws Exception {
50 final String[] expected = {};
51 verifyWithInlineConfigParser(getPath("Example2.java"), expected);
52 }
53 }