assertThat(options.hasField("repo")).isFalse();
}
@Test
public void write_statistics_to_json_response() throws Exception {
SimpleGetRequest request = new SimpleGetRequest();
request.setParam("p", "3");
request.setParam("ps", "10");
request.setParam("f", "name,repo");
request.setParam("severities", "BLOCKER");
SearchOptions options = SearchOptions.create(request);
StringWriter json = new StringWriter();
JsonWriter jsonWriter = JsonWriter.of(json).beginObject();
Result result = mock(Result.class);