@Test
  public void testPutGetAll() {
    cache.putAll(Arrays.asList(status("p1", 0), status("p2", 0)));

    assertEquals(Arrays.asList(status("p1", 0), status("p2", 0)), cache.getAll());
    assertNull(cache.findByProjectName("unknown"));
  }