Hopefully fix Windows build issue

This commit is contained in:
James Agnew 2014-10-31 14:30:33 -04:00
parent 567fd1219c
commit 103b1ba99f
3 changed files with 20 additions and 1 deletions

View File

@ -970,7 +970,7 @@ public class FhirResourceDaoTest {
{ {
Patient patient = new Patient(); Patient patient = new Patient();
patient.addIdentifier("urn:system", "001"); patient.addIdentifier("urn:system", "001");
patient.addName().addGiven("testSearchStringParamWithNonNormalized_höra"); patient.addName().addGiven("testSearchStringParamWithNonNormalized_h\u00F6ra");
ourPatientDao.create(patient); ourPatientDao.create(patient);
} }
{ {

View File

@ -29,6 +29,12 @@
</dependency> </dependency>
<!-- Testing --> <!-- Testing -->
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu</artifactId>
<version>0.8-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>

View File

@ -0,0 +1,13 @@
package ca.uhn.fhir.parser;
import org.junit.Test;
public class MixedResourcesTest {
@Test
public void testMixedResources() {
}
}