when(fileutil.readCRLFile(any(File.class))).thenReturn(crl);
when(crlgen.removeEntries(eq(crl), any(List.class))).thenReturn(crl);
CrlResource res = new CrlResource(crlgen, fileutil, config, sercur);
String[] ids = {"10"};
res.unrevoke(ids);
verify(crlgen, atLeastOnce()).removeEntries(eq(crl), any(List.class));
verify(fileutil, atLeastOnce()).writeCRLFile(any(File.class), eq(crl));
}
private static class ConfigForTesting extends MapConfiguration {