Files
openide/python/python-common-tests/com/jetbrains/python/PythonTestUtil.java
Dmitry Jemerov 749ce8a332 Cleanup: remove @author tags
GitOrigin-RevId: 9174eb8d77215b16f9f6c6074e6aced654d95ef1
2021-05-03 13:07:48 +00:00

13 lines
364 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;
public final class PythonTestUtil {
private PythonTestUtil() {
}
public static String getTestDataPath() {
return PythonHelpersLocator.getPythonCommunityPath() + "/testData";
}
}