aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputMemberName.java
diff options
context:
space:
mode:
authorrnveach <rveach02@gmail.com>2015-10-18 13:40:47 -0400
committerRoman Ivanov <ivanov-jr@mail.ru>2015-10-19 12:38:18 -0400
commitfa5884271348f0cfaaa1160e18028d37845af4dd (patch)
tree7882f0e149d6da6769302a8460b21a644bd0cbb7 /src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputMemberName.java
parent375dbf134ceaca9cf00fc3c220d8e32dc03ca099 (diff)
downloadcheckstyle-fa5884271348f0cfaaa1160e18028d37845af4dd.tar.gz
Issue #2161: unify test input locations for naming package
Diffstat (limited to 'src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputMemberName.java')
-rw-r--r--src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputMemberName.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputMemberName.java b/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputMemberName.java
new file mode 100644
index 000000000..4e1bf7e7e
--- /dev/null
+++ b/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputMemberName.java
@@ -0,0 +1,14 @@
+package com.puppycrawl.tools.checkstyle.checks.naming;
+
+public class InputMemberName
+{
+ public int mPublic;
+ protected int mProtected;
+ int mPackage;//comment
+ private int mPrivate;
+
+ public int _public;
+ protected int _protected;
+ int _package;
+ private int _private;
+}