refactor: add display name to test

This commit is contained in:
Paul Robson 2021-12-22 11:54:19 -05:00
parent 9171c39d59
commit c80b7eae10
1 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,7 @@ import org.hl7.fhir.r4.model.Coding;
import org.hl7.fhir.r4.model.ConceptMap; import org.hl7.fhir.r4.model.ConceptMap;
import org.hl7.fhir.r4.model.Enumerations; import org.hl7.fhir.r4.model.Enumerations;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
import java.io.IOException; import java.io.IOException;
@ -19,6 +20,7 @@ class ConceptMapEngineTest {
public static final String TARGET_CODE_STRING = "vital-signs"; public static final String TARGET_CODE_STRING = "vital-signs";
@Test @Test
@DisplayName("Coding is converted according to ConceptMap")
void translate() throws IOException { void translate() throws IOException {
ConceptMap conceptMap = getConceptMap(); ConceptMap conceptMap = getConceptMap();
ConceptMapEngine conceptMapEngine = getConceptMapEngine(conceptMap); ConceptMapEngine conceptMapEngine = getConceptMapEngine(conceptMap);