Issue #2880: moved compilable resources to resource folder
This commit is contained in:
parent
07d477a710
commit
06ed1d48da
|
|
@ -139,8 +139,7 @@ public class GenericWhitespaceCheckTest
|
|||
@Test
|
||||
public void testGenericEndsTheLine() throws Exception {
|
||||
final String[] expected = ArrayUtils.EMPTY_STRING_ARRAY;
|
||||
verify(checkConfig, getNonCompilablePath("InputGenericWhitespaceEndsTheLine.java"),
|
||||
expected);
|
||||
verify(checkConfig, getPath("InputGenericWhitespaceEndsTheLine.java"), expected);
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ import com.puppycrawl.tools.checkstyle.checks.imports.ImportControlCheck;
|
|||
public class AllChecksTest extends BaseCheckTestSupport {
|
||||
@Test
|
||||
public void testAllChecksWithDefaultConfiguration() throws Exception {
|
||||
final String inputFilePath = getNonCompilablePath("InputDefaultConfig.java");
|
||||
final String inputFilePath = getPath("InputDefaultConfig.java");
|
||||
final String[] expected = ArrayUtils.EMPTY_STRING_ARRAY;
|
||||
|
||||
for (Class<?> check : CheckUtil.getCheckstyleChecks()) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue