public void TestAnatomyCombined_CT_Displayable() throws Exception {
   {
     Concept a = new Concept("C0000726"); // "Abdomen"
     Concept b = new Concept("C0030797"); // "Pelvis"
     Concept combined = new Concept("C1508499"); // "Abdomen and Pelvis"
     assertEquals(
         "Checking Abdomen and Pelvis",
         "Abdomen and Pelvis",
         CombinedAnatomicConcepts.getCombinedConcept(a, b, CTAnatomy.getAnatomyConcepts())
             .getCodeMeaning());
   }
 }
 public void TestAnatomyCombined_CT() throws Exception {
   {
     Concept a = new Concept("C0000726"); // "Abdomen"
     Concept b = new Concept("C0030797"); // "Pelvis"
     Concept combined = new Concept("C1508499"); // "Abdomen and Pelvis"
     assertEquals(
         "Checking Abdomen and Pelvis",
         combined,
         CombinedAnatomicConcepts.getCombinedConcept(a, b));
     assertEquals(
         "Checking Abdomen and Pelvis",
         combined,
         CombinedAnatomicConcepts.getCombinedConcept(b, a));
     assertEquals(
         "Checking Abdomen and Pelvis with self",
         combined,
         CombinedAnatomicConcepts.getCombinedConcept(combined, a));
     assertEquals(
         "Checking Abdomen and Pelvis with self",
         combined,
         CombinedAnatomicConcepts.getCombinedConcept(combined, b));
     assertEquals(
         "Checking Abdomen and Pelvis with self",
         combined,
         CombinedAnatomicConcepts.getCombinedConcept(a, combined));
     assertEquals(
         "Checking Abdomen and Pelvis with self",
         combined,
         CombinedAnatomicConcepts.getCombinedConcept(b, combined));
   }
   {
     Concept a = new Concept("C0018670"); // "Head"
     Concept b = new Concept("C0027530"); // "Neck"
     Concept combined = new Concept("C0460004"); // "Head and Neck"
     assertEquals(
         "Checking Head and Neck", combined, CombinedAnatomicConcepts.getCombinedConcept(a, b));
   }
   {
     Concept a = new Concept("C0006104"); // "Brain"
     Concept b = new Concept("C0027530"); // "Neck"
     Concept combined = new Concept("C0460004"); // "Head and Neck"
     assertEquals(
         "Checking Brain and Neck", combined, CombinedAnatomicConcepts.getCombinedConcept(a, b));
   }
   {
     Concept a = new Concept("C0006104"); // "Brain"
     Concept b = new Concept("C0018670"); // "Head"
     Concept combined = new Concept("C0018670"); // "Head"
     assertEquals(
         "Checking Head and Brain merge",
         combined,
         CombinedAnatomicConcepts.getCombinedConcept(a, b));
   }
   {
     Concept a = new Concept("C0817096"); // "Chest"
     Concept b = new Concept("C0024109"); // "Lung"
     Concept combined = new Concept("C0817096"); // "Chest"
     assertEquals(
         "Checking Chest and Lung merge",
         combined,
         CombinedAnatomicConcepts.getCombinedConcept(a, b));
   }
   {
     Concept a = new Concept("C0817096"); // "Chest"
     Concept b = new Concept("C1508499"); // "Abdomen and Pelvis"
     Concept combined = new Concept("C1562547"); // "Chest, Abdomen and Pelvis"
     assertEquals(
         "Checking Chest, Abdomen and Pelvis merge",
         combined,
         CombinedAnatomicConcepts.getCombinedConcept(a, b));
   }
   {
     Concept a = new Concept("C1562459"); // "Neck and Chest"
     Concept b = new Concept("C1508499"); // "Abdomen and Pelvis"
     Concept combined = new Concept("C1562776"); // "Neck, Chest, Abdomen and Pelvis"
     assertEquals(
         "Checking Neck, Chest, Abdomen and Pelvis merge",
         combined,
         CombinedAnatomicConcepts.getCombinedConcept(a, b));
   }
   {
     Concept a = new Concept("C0027530"); // "Neck"
     Concept b = new Concept("C1562547"); // "Chest, Abdomen and Pelvis"
     Concept combined = new Concept("C1562776"); // "Neck, Chest, Abdomen and Pelvis"
     assertEquals(
         "Checking Neck, Chest, Abdomen and Pelvis merge",
         combined,
         CombinedAnatomicConcepts.getCombinedConcept(a, b));
   }
 }