mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-24 06:06:18 +07:00
- move PyResolveTest to common tests - support common test fixture for both platform and analysis tool GitOrigin-RevId: dafe7a942b1c9d4d927dc5e2f412a0941e0b0dd1
15 lines
381 B
Java
15 lines
381 B
Java
// Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
|
package com.jetbrains.python;
|
|
|
|
/**
|
|
* @author yole
|
|
*/
|
|
public class PythonTestUtil {
|
|
private PythonTestUtil() {
|
|
}
|
|
|
|
public static String getTestDataPath() {
|
|
return PythonHelpersLocator.getPythonCommunityPath() + "/testData";
|
|
}
|
|
}
|