mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
Test data requests processing is delegated to PathManagerEx in order to provide uniform access
17 lines
264 B
Java
17 lines
264 B
Java
package com.intellij;
|
|
|
|
import com.intellij.openapi.application.ex.PathManagerEx;
|
|
|
|
/**
|
|
* @author yole
|
|
*/
|
|
public class JavaTestUtil {
|
|
|
|
private JavaTestUtil() {
|
|
}
|
|
|
|
public static String getJavaTestDataPath() {
|
|
return PathManagerEx.getTestDataPath();
|
|
}
|
|
}
|