Skip to content

Commit

Permalink
endToEnd()
Browse files Browse the repository at this point in the history
  • Loading branch information
awatson1978 committed Aug 15, 2023
1 parent 8efd854 commit eff18c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/test/java/org/mitre/synthea/TestHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ public static void exportOff() {
Config.set("exporter.practitioner.fhir_stu3.export", "false");
Config.set("exporter.practitioner.fhir_dstu2.export", "false");
Config.set("exporter.json.export", "false");
Config.set("exporter.ndjson.export", "false");
Config.set("exporter.csv.export", "false");
Config.set("exporter.cpcds.export", "false");
Config.set("exporter.bfd.export", "false");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public void export() throws Exception {
List<String> validationErrors = new ArrayList<>();
TestHelper.exportOff();
Config.set("exporter.json.export", "true");
Config.set("exporter.ndjson.export", "true");
boolean moduleExport = person.randBoolean();
Config.set("exporter.json.include_module_history", String.valueOf(moduleExport));
String personJson = JSONExporter.export(person);
Expand Down

0 comments on commit eff18c7

Please sign in to comment.