@Test
 public void testQueryMultiple() throws Exception {
   load();
   ProfileMatcher profileMatcher = createProfileMatcher(kb);
   LabelMapper labelMapper = kb.getLabelMapper();
   eval.writeJsonTo("target/bn-it-results-multi.json");
   String dq = "Schwartz-Jampel Syndrome, Type 1";
   assertTrue(
       eval.evaluateTestQuery(
           profileMatcher,
           eval.constructTestQueryAgainstIndividual(
               kb, labelMapper, "Schwartz-Jampel Syndrome (Orphanet)", 3, dq)));
   TestQuery tq =
       eval.constructTestQueryAgainstIndividual(
           kb, labelMapper, "Arthrogryposis, Distal, Type 2a", 6, dq);
   tq.maxTimeMs = 10000;
   assertTrue(eval.evaluateTestQuery(profileMatcher, tq));
 }