summaryrefslogtreecommitdiff
path: root/json/tests/test/com/intellij/json/JsonFoldingTest.java
blob: 2f21918ab1f94c284a60e037d6abf5a7d36331f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.intellij.json;

/**
 * @author Mikhail Golubev
 */
public class JsonFoldingTest extends JsonTestCase {
  private void doTest() {
    myFixture.testFolding(getTestDataPath() + "/folding/" + getTestName(false) + ".json");
  }


  public void testArrayFolding() {
    doTest();
  }

  public void testObjectFolding() {
    doTest();
  }

  public void testCommentaries() {
    doTest();
  }

  // Moved from JavaScript

  public void testObjectLiteral2() {
    doTest();
  }

  public void testObjectLiteral3() {
    doTest();
  }

  public void testObjectLiteral4() {
    doTest();
  }

}