use of org.openmrs.ConceptSet in project openmrs-core by openmrs.
the class ConceptServiceImplTest method getSetsContainingConcept_shouldGiveAListOfConceptSetContainingTheGivenConcept.
/**
* @see ConceptServiceImpl#getSetsContainingConcept(Concept)
*/
@Test
public void getSetsContainingConcept_shouldGiveAListOfConceptSetContainingTheGivenConcept() {
Concept concept = conceptService.getConcept(18);
List<ConceptSet> conceptSets = conceptService.getSetsContainingConcept(concept);
assertNotNull(conceptSets);
assertEquals(conceptSets.get(0).getConcept(), concept);
}
Aggregations