This commit is contained in:
jamesagnew 2016-03-16 08:13:35 -04:00
parent 9aa7eea274
commit c80b29fc45
1 changed files with 5 additions and 3 deletions

View File

@ -2,15 +2,17 @@ package ca.uhn.fhir.jpa.term;
import static org.hamcrest.Matchers.containsInAnyOrder;
import static org.hamcrest.Matchers.containsString;
import static org.junit.Assert.*;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertThat;
import static org.junit.Assert.fail;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import org.hl7.fhir.dstu3.model.CodeSystem;
import org.hl7.fhir.dstu3.model.CodeSystem.CodeSystemContentMode;
import org.hl7.fhir.instance.model.api.IIdType;
import org.junit.Ignore;
import org.junit.Test;
import ca.uhn.fhir.jpa.dao.dstu3.BaseJpaDstu3Test;
@ -100,7 +102,7 @@ public class TerminologySvcImplTest extends BaseJpaDstu3Test {
assertThat(codes, containsInAnyOrder("childAA", "childAAA", "childAAB"));
}
@Test
@Test@Ignore
public void testFindCodesAbove() {
CodeSystem codeSystem = new CodeSystem();
codeSystem.setUrl("http://example.com/my_code_system");