aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools
diff options
context:
space:
mode:
authorDmytro Kytsmen <dmitrokytsmen@gmail.com>2017-04-21 21:32:12 +0300
committerrnveach <rveach02@gmail.com>2017-04-24 09:38:16 -0400
commitf29cc180d193068c3a99f01e006d8ca42806310a (patch)
treec5264e432208f8d3d1e27ec889cbb4928fa397e5 /src/test/resources/com/puppycrawl/tools
parent48abea70eee835b2476e1bbb7c385b4007cb538a (diff)
downloadcheckstyle-f29cc180d193068c3a99f01e006d8ca42806310a.tar.gz
Issue #4165: Split and Organize Checkstyle inputs by Test for checks in coding package: ModifiedControlVariable
Diffstat (limited to 'src/test/resources/com/puppycrawl/tools')
-rw-r--r--src/test/resources/com/puppycrawl/tools/checkstyle/checks/coding/modifiedcontrolvariable/InputModifiedControlVariableBothForLoops.java (renamed from src/test/resources/com/puppycrawl/tools/checkstyle/checks/coding/InputModifiedControl.java)4
-rw-r--r--src/test/resources/com/puppycrawl/tools/checkstyle/checks/coding/modifiedcontrolvariable/InputModifiedControlVariableEnhancedForLoopVariable.java (renamed from src/test/resources/com/puppycrawl/tools/checkstyle/checks/coding/InputModifiedControlVariableEnhancedForLoopVariable.java)2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/test/resources/com/puppycrawl/tools/checkstyle/checks/coding/InputModifiedControl.java b/src/test/resources/com/puppycrawl/tools/checkstyle/checks/coding/modifiedcontrolvariable/InputModifiedControlVariableBothForLoops.java
index f47309948..d3f57c7be 100644
--- a/src/test/resources/com/puppycrawl/tools/checkstyle/checks/coding/InputModifiedControl.java
+++ b/src/test/resources/com/puppycrawl/tools/checkstyle/checks/coding/modifiedcontrolvariable/InputModifiedControlVariableBothForLoops.java
@@ -2,9 +2,9 @@
// Test case file for FOR_ITERATION and whitespace.
// Created: 2003
////////////////////////////////////////////////////////////////////////////////
-package com.puppycrawl.tools.checkstyle.checks.coding;
+package com.puppycrawl.tools.checkstyle.checks.coding.modifiedcontrolvariable;
import java.io.Serializable;
-class InputModifiedControl
+class InputModifiedControlVariableBothForLoops
{
int k;
void method1()
diff --git a/src/test/resources/com/puppycrawl/tools/checkstyle/checks/coding/InputModifiedControlVariableEnhancedForLoopVariable.java b/src/test/resources/com/puppycrawl/tools/checkstyle/checks/coding/modifiedcontrolvariable/InputModifiedControlVariableEnhancedForLoopVariable.java
index e985cb41a..edb1194d7 100644
--- a/src/test/resources/com/puppycrawl/tools/checkstyle/checks/coding/InputModifiedControlVariableEnhancedForLoopVariable.java
+++ b/src/test/resources/com/puppycrawl/tools/checkstyle/checks/coding/modifiedcontrolvariable/InputModifiedControlVariableEnhancedForLoopVariable.java
@@ -1,4 +1,4 @@
-package com.puppycrawl.tools.checkstyle.checks.coding;
+package com.puppycrawl.tools.checkstyle.checks.coding.modifiedcontrolvariable;
public class InputModifiedControlVariableEnhancedForLoopVariable {