json schema -> json

This commit is contained in:
irengrig
2016-02-16 00:49:36 +01:00
parent 70848c8a5b
commit 57604ab453
39 changed files with 4 additions and 5 deletions
-1
View File
@@ -411,7 +411,6 @@ binding.setVariable("platformImplementationModules", [
"jps-model-impl",
"jps-model-serialization",
"json",
"jsonSchema",
"lang-impl",
"lvcs-impl",
"platform-impl",
+1 -1
View File
@@ -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>
@@ -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 {
@@ -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 {
@@ -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));