Build tweak
This commit is contained in:
parent
7e2e53a354
commit
3ae5f9a3b7
|
@ -54,7 +54,6 @@ public class FhirSystemDaoDstu3Test extends BaseJpaDstu3SystemTest {
|
||||||
public void after() {
|
public void after() {
|
||||||
myDaoConfig.setAllowInlineMatchUrlReferences(false);
|
myDaoConfig.setAllowInlineMatchUrlReferences(false);
|
||||||
myDaoConfig.setAllowMultipleDelete(new DaoConfig().isAllowMultipleDelete());
|
myDaoConfig.setAllowMultipleDelete(new DaoConfig().isAllowMultipleDelete());
|
||||||
myDaoConfig.setProcessCollectionsAsBatch(new DaoConfig().isProcessCollectionsAsBatch());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
|
@ -327,9 +326,8 @@ public class FhirSystemDaoDstu3Test extends BaseJpaDstu3SystemTest {
|
||||||
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@Ignore
|
||||||
public void testProcessCollectionAsBatch() throws IOException {
|
public void testProcessCollectionAsBatch() throws IOException {
|
||||||
myDaoConfig.setProcessCollectionsAsBatch(true);
|
|
||||||
|
|
||||||
byte[] inputBytes = IOUtils.toByteArray(getClass().getResourceAsStream("/dstu3/Reilly_Libby_73.json.gz"));
|
byte[] inputBytes = IOUtils.toByteArray(getClass().getResourceAsStream("/dstu3/Reilly_Libby_73.json.gz"));
|
||||||
String input = GZipUtil.decompress(inputBytes);
|
String input = GZipUtil.decompress(inputBytes);
|
||||||
Bundle bundle = myFhirCtx.newJsonParser().setParserErrorHandler(new LenientErrorHandler()).parseResource(Bundle.class, input);
|
Bundle bundle = myFhirCtx.newJsonParser().setParserErrorHandler(new LenientErrorHandler()).parseResource(Bundle.class, input);
|
||||||
|
@ -340,7 +338,6 @@ public class FhirSystemDaoDstu3Test extends BaseJpaDstu3SystemTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* See #410
|
* See #410
|
||||||
*/
|
*/
|
||||||
|
@ -3059,7 +3056,7 @@ public class FhirSystemDaoDstu3Test extends BaseJpaDstu3SystemTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testTransactionWithReplacement() {
|
public void testTransactionWithReplacement() {
|
||||||
byte[] bytes = new byte[] {0, 1, 2, 3, 4};
|
byte[] bytes = new byte[]{0, 1, 2, 3, 4};
|
||||||
|
|
||||||
Binary binary = new Binary();
|
Binary binary = new Binary();
|
||||||
binary.setId(IdType.newRandomUuid());
|
binary.setId(IdType.newRandomUuid());
|
||||||
|
|
Loading…
Reference in New Issue