public void testSkipValue2() throws IOException {
JsonReader reader = new JsonStringReader("{ \"testField\": [ [[2 , 3],[3]], [[3,4]] ], \"ssdd\" : \"sdf\\\"sdfsdf\" }");
Assert.assertThat(reader.isObject(), is(true));
Assert.assertThat(Arrays.equals("testField".toCharArray(), reader.readChars()), is(true));
Assert.assertThat(reader.isColon(), is(true));
reader.skipValue();
Assert.assertThat(reader.isComma(), is(true));
Assert.assertThat(Arrays.equals("ssdd".toCharArray(), reader.readChars()), is(true));
Assert.assertThat(reader.isColon(), is(true));
reader.skipValue();