Skip to content

Commit

Permalink
Merge 2f13964 into 2eee606
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonaowen committed Feb 26, 2018
2 parents 2eee606 + 2f13964 commit 320e930
Showing 1 changed file with 29 additions and 0 deletions.
@@ -0,0 +1,29 @@
package org.hl7.fhir.dstu3.model;

import org.junit.Ignore;
import org.junit.Test;

import static org.junit.Assert.*;

public class HumanNameDstu3Test {
@Ignore("Issue #865")
@Test
public void hasGivenFindsParameter() {
HumanName humanName = new HumanName().addGiven("test");
assertTrue(humanName.hasGiven("test"));
}

@Ignore("Issue #865")
@Test
public void hasPrefixFindsParameter() {
HumanName humanName = new HumanName().addPrefix("test");
assertTrue(humanName.hasPrefix("test"));
}

@Ignore("Issue #865")
@Test
public void hasSuffixFindsParameter() {
HumanName humanName = new HumanName().addSuffix("test");
assertTrue(humanName.hasSuffix("test"));
}
}

0 comments on commit 320e930

Please sign in to comment.