TmpdirRule

junit4 @Rule to create tmp dir from idea SDK
This commit is contained in:
Stepan Koltsov
2012-06-14 15:29:16 +04:00
parent 9db8a63099
commit 4e99edccaa
6 changed files with 82 additions and 29 deletions
@@ -240,6 +240,15 @@ public class JetTestUtils {
filesToDelete.add(file);
}
public static void rmrf(File file) {
if (file == null) {
return;
}
if (!FileUtil.delete(file)) {
throw new RuntimeException("failed to delete " + file);
}
}
public static final Pattern FILE_PATTERN = Pattern.compile("//\\s*FILE:\\s*(.*)$", Pattern.MULTILINE);
public static JetCoreEnvironment createEnvironmentWithFullJdk(Disposable disposable) {