Created
March 17, 2015 03:21
-
-
Save djazayeri/577e57a2749d20867cfe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
assertThat(updated.getNames(), containsInAnyOrder( | |
allOf( | |
hasProperty("name", is("History of present illness")), | |
hasProperty("locale", is(Locale.ENGLISH)), | |
hasProperty("localePreferred", is(true)), | |
hasProperty("conceptNameType", is(ConceptNameType.FULLY_SPECIFIED))), | |
allOf( | |
hasProperty("name", is("HPI")), | |
hasProperty("locale", is(Locale.ENGLISH)), | |
hasProperty("localePreferred", is(false)), | |
hasProperty("conceptNameType", nullValue())))); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment