Refactoring: extract method for check test is AllFilesPresent test

This commit is contained in:
Nikolay Krasko
2015-12-14 16:28:36 +03:00
committed by Nikolay Krasko
parent 5cd23daf4e
commit e562b73eff
4 changed files with 9 additions and 4 deletions
@@ -962,4 +962,9 @@ public class KotlinTestUtils {
}
return string;
}
public static boolean isAllFilesPresentTest(String testName) {
//noinspection SpellCheckingInspection
return testName.toLowerCase().startsWith("allfilespresentin");
}
}