use of com.b2international.snowowl.fhir.core.model.property.CodeConceptProperty in project snow-owl by b2ihealthcare.
the class ConceptTest method build.
@Test
public void build() throws Exception {
assertEquals(new Code("conceptCode"), concept.getCode());
ConceptProperty conceptProperty = concept.getProperties().iterator().next();
assertTrue(conceptProperty instanceof CodeConceptProperty);
}
Aggregations