mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
json schema -> json
This commit is contained in:
@@ -411,7 +411,6 @@ binding.setVariable("platformImplementationModules", [
|
||||
"jps-model-impl",
|
||||
"jps-model-serialization",
|
||||
"json",
|
||||
"jsonSchema",
|
||||
"lang-impl",
|
||||
"lvcs-impl",
|
||||
"platform-impl",
|
||||
|
||||
+1
-1
@@ -15,6 +15,6 @@
|
||||
<orderEntry type="module" module-name="xml-openapi" />
|
||||
<orderEntry type="module" module-name="spellchecker" />
|
||||
<orderEntry type="library" name="Guava" level="project" />
|
||||
<orderEntry type="module" module-name="jsonSchema" exported="" />
|
||||
<orderEntry type="library" name="gson" level="project" />
|
||||
</component>
|
||||
</module>
|
||||
+1
-1
@@ -25,7 +25,7 @@ public class JsonSchemaDocumentationTest extends LightPlatformCodeInsightFixture
|
||||
|
||||
@Override
|
||||
protected String getBasePath() {
|
||||
return "/json/jsonSchema/testData/documentation";
|
||||
return "/json/tests/testData/jsonSchema/documentation";
|
||||
}
|
||||
|
||||
public void testSimple() throws Exception {
|
||||
+1
-1
@@ -27,7 +27,7 @@ import java.util.List;
|
||||
public class JsonSchemaHighlightingTest extends DaemonAnalyzerTestCase {
|
||||
@Override
|
||||
protected String getTestDataPath() {
|
||||
return PlatformTestUtil.getCommunityPath() + "/json/jsonSchema/testData/highlighting";
|
||||
return PlatformTestUtil.getCommunityPath() + "/json/tests/testData/jsonSchema/highlighting";
|
||||
}
|
||||
|
||||
public void testNumberMultipleWrong() throws Exception {
|
||||
+1
-1
@@ -13,7 +13,7 @@ import java.util.List;
|
||||
public class JsonSchemaReadTest {
|
||||
@org.junit.Test
|
||||
public void testReadSchemaItself() throws Exception {
|
||||
final File file = new File(PlatformTestUtil.getCommunityPath(), "json/jsonSchema/testData/schema.json");
|
||||
final File file = new File(PlatformTestUtil.getCommunityPath(), "json/tests/testData/jsonSchema/schema.json");
|
||||
Assert.assertTrue(file.exists());
|
||||
final JsonSchemaReader reader = new JsonSchemaReader();
|
||||
final JsonSchemaObject read = reader.read(new FileReader(file));
|
||||
Reference in New Issue
Block a user