private void test(String authors, String dates, int from, int to, boolean group, String expected) throws JSONException {
StringWriter output = new StringWriter();
JsonWriter jsonWriter = JsonWriter.of(output);
jsonWriter.beginObject();
writer.write(authors, dates, from, to, group, jsonWriter);
jsonWriter.endObject();
JSONAssert.assertEquals(output.toString(), expected, true);
}
}