flutter-idea/testSrc/unit/io/flutter/utils/StdoutJsonParserTest.java [73:86]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void splitJson() {
    final StdoutJsonParser parser = new StdoutJsonParser();
    parser.appendOutput("hello\n");
    parser.appendOutput("there\n");
    parser.appendOutput("[{'foo':");
    parser.appendOutput("'bar'}]\n");
    parser.appendOutput("bye\n");

    assertArrayEquals(
      "validating parser results",
      new String[]{"hello\n", "there\n", "[{'foo':'bar'}]\n", "bye\n"},
      parser.getAvailableLines().toArray()
    );
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



flutter-idea/testSrc/unit/io/flutter/utils/StdoutJsonParserTest.java [89:102]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void deepNestedJson() {
    final StdoutJsonParser parser = new StdoutJsonParser();
    parser.appendOutput("hello\n");
    parser.appendOutput("there\n");
    parser.appendOutput("[{'foo':");
    parser.appendOutput("[{'bar':'baz'}]}]\n");
    parser.appendOutput("bye\n");

    assertArrayEquals(
      "validating parser results",
      new String[]{"hello\n", "there\n", "[{'foo':[{'bar':'baz'}]}]\n", "bye\n"},
      parser.getAvailableLines().toArray()
    );
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



