Refactor Python tests

- move PyResolveTest to common tests
- support common test fixture for both platform and analysis tool

GitOrigin-RevId: dafe7a942b1c9d4d927dc5e2f412a0941e0b0dd1
This commit is contained in:
Stanislav Utikeev
2019-11-11 17:34:22 +03:00
committed by intellij-monorepo-bot
parent 606f7c9d61
commit e871a56af0
9 changed files with 2059 additions and 1462 deletions

View File

@@ -0,0 +1,14 @@
// 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";
}
}