char[] t1 = "dsffsfsf".toCharArray();
char[] ret = reader.readField(t1);
Assert.assertThat(new String(ret), is("testField"));
Assert.assertThat(reader.isColon(), is(true));
Assert.assertThat(reader.readDouble(), is(3332.44));
char ch = reader.readAndSkipBlank();
Assert.assertThat(ch, is('}'));
reader.close();
}
@Test