@Test
 public void indexesMutationsByPackage() throws IOException, SAXException {
   MutationReport report = MutationReport.create(mutationsXml_[0]);
   assertThat(report.getMutationsForPackage("org.jenkinsci.plugins.pitmutation"), hasSize(16));
   assertThat(report.getMutationsForPackage(""), notNullValue());
   assertThat(report.getMutationsForPackage(""), hasSize(0));
 }