input.close();
}
@Test
public void testParseResponse() throws Exception {
Queries ct = testee.parseResponse(input, HttpStatus.SC_OK);
assertNotNull(ct);
assertEquals(QueryValidator.COUNT, ct.getAll().size());
QueryValidator.validate9(ct.getById(9));
QueryValidator.validate1(ct.getById(1));
}