assertNotNull(getPreparedQueryCache() + ": " + getPreparedQueryCache().getMapView() +
" does not contain " + id, cached);
}
void assertNotCached(String id) {
PreparedQueryCache cache = getPreparedQueryCache();
if (cache != null) {
assertNull(cache.get(id));
}
}