From b37b43b59f1684eefd6e0a14d7cd8fc44d516241 Mon Sep 17 00:00:00 2001 From: Alexey Date: Wed, 18 Feb 2015 20:36:25 +0300 Subject: [PATCH] Added missed @Test annotation on test-case 'IndentationCheckTest.testMethodCallLineWrap' --- .../checkstyle/checks/indentation/IndentationCheckTest.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/java/com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheckTest.java b/src/test/java/com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheckTest.java index 712a20f1f..36719ab42 100644 --- a/src/test/java/com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheckTest.java +++ b/src/test/java/com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheckTest.java @@ -75,6 +75,7 @@ public class IndentationCheckTest extends BaseCheckTestSupport verify(checkConfig, getPath("indentation/InputAndroidStyle.java"), expected); } + @Test public void testMethodCallLineWrap() throws Exception { final DefaultConfiguration checkConfig = createCheckConfig(IndentationCheck.class);