diff --git a/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.java b/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.java index f8e7689e..06ac9d17 100644 --- a/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.java +++ b/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.java @@ -165,7 +165,10 @@ void mapCondition_withGivenAdtXml( Approvals.verify( fhirJson, Approvals.NAMES - .withParameters(xmlFileNames.stream().map(t -> t.getFirst()).toArray(String[]::new)) + .withParameters( + xmlFileNames.stream() + .map(t -> t.getFirst().substring(0, 5)) + .toArray(String[]::new)) .forFile() .withExtension(".fhir.json")); } diff --git a/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsMedicationStatementProcessorTest.java b/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsMedicationStatementProcessorTest.java index 9cc0a9b2..fa56e91b 100644 --- a/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsMedicationStatementProcessorTest.java +++ b/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsMedicationStatementProcessorTest.java @@ -161,7 +161,10 @@ void mapMedicationStatement_withGivenAdtXml( Approvals.verify( fhirJson, Approvals.NAMES - .withParameters(xmlFileNames.stream().map(t -> t.getFirst()).toArray(String[]::new)) + .withParameters( + xmlFileNames.stream() + .map(t -> t.getFirst().substring(0, 5)) + .toArray(String[]::new)) .forFile() .withExtension(".fhir.json")); } diff --git a/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.java b/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.java index cda5855b..5112bb6d 100644 --- a/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.java +++ b/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.java @@ -199,7 +199,10 @@ void mapObservation_withGivenAdtXml( Approvals.verify( fhirJson, Approvals.NAMES - .withParameters(xmlFileNames.stream().map(t -> t.getFirst()).toArray(String[]::new)) + .withParameters( + xmlFileNames.stream() + .map(t -> t.getFirst().substring(0, 5)) + .toArray(String[]::new)) .forFile() .withExtension(".fhir.json")); } diff --git a/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.java b/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.java index 79f737fe..1c6ae525 100644 --- a/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.java +++ b/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.java @@ -207,7 +207,10 @@ void mapProcedure_withGivenAdtXml( Approvals.verify( fhirJson, Approvals.NAMES - .withParameters(xmlFileNames.stream().map(t -> t.getFirst()).toArray(String[]::new)) + .withParameters( + xmlFileNames.stream() + .map(t -> t.getFirst().substring(0, 5)) + .toArray(String[]::new)) .forFile() .withExtension(".fhir.json")); } diff --git "a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.001_1.Pat_2Tumoren_TumorID_1_Diagnose.xml.003_Pat1_Tumor1_Therapie1_Behandlungsende_OP.xml.009_Pat1_Tumor1_Statusaenderung_Fernmeta_3x-\303\274berschreibt2xFernMetaausDIAGNOSE.xml.approved.fhir.json" b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.001_1.003_P.009_P.approved.fhir.json similarity index 100% rename from "src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.001_1.Pat_2Tumoren_TumorID_1_Diagnose.xml.003_Pat1_Tumor1_Therapie1_Behandlungsende_OP.xml.009_Pat1_Tumor1_Statusaenderung_Fernmeta_3x-\303\274berschreibt2xFernMetaausDIAGNOSE.xml.approved.fhir.json" rename to src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.001_1.003_P.009_P.approved.fhir.json diff --git a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.001_1.Pat_2Tumoren_TumorID_1_Diagnose.xml.approved.fhir.json b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.001_1.approved.fhir.json similarity index 100% rename from src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.001_1.Pat_2Tumoren_TumorID_1_Diagnose.xml.approved.fhir.json rename to src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.001_1.approved.fhir.json diff --git a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.002_1.Pat_2Tumoren_TumorID_2_Diagnose.xml.approved.fhir.json b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.002_1.approved.fhir.json similarity index 100% rename from src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.002_1.Pat_2Tumoren_TumorID_2_Diagnose.xml.approved.fhir.json rename to src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.002_1.approved.fhir.json diff --git a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsMedicationStatementProcessorTest.mapMedicationStatement_withGivenAdtXml.008_Pat3_Tumor1_Behandlungsende_SYST.xml.approved.fhir.json b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsMedicationStatementProcessorTest.mapMedicationStatement_withGivenAdtXml.008_P.approved.fhir.json similarity index 100% rename from src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsMedicationStatementProcessorTest.mapMedicationStatement_withGivenAdtXml.008_Pat3_Tumor1_Behandlungsende_SYST.xml.approved.fhir.json rename to src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsMedicationStatementProcessorTest.mapMedicationStatement_withGivenAdtXml.008_P.approved.fhir.json diff --git a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsMedicationStatementProcessorTest.mapMedicationStatement_withGivenAdtXml.008_Pat3_Tumor1_Behandlungsende_SYST.xml.received.approved.json b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsMedicationStatementProcessorTest.mapMedicationStatement_withGivenAdtXml.008_Pat3_Tumor1_Behandlungsende_SYST.xml.received.approved.json deleted file mode 100644 index c912cf2f..00000000 --- a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsMedicationStatementProcessorTest.mapMedicationStatement_withGivenAdtXml.008_Pat3_Tumor1_Behandlungsende_SYST.xml.received.approved.json +++ /dev/null @@ -1,340 +0,0 @@ -{ - "resourceType": "Bundle", - "type": "transaction", - "entry": [ { - "fullUrl": "MedicationStatement/3a6f9e3df20464337ff932ea9833acdfc92c3dd4afa444f2d1bf900627eec020", - "resource": { - "resourceType": "MedicationStatement", - "id": "3a6f9e3df20464337ff932ea9833acdfc92c3dd4afa444f2d1bf900627eec020", - "meta": { - "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:2.0.3", - "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-MedicationStatement-Systemtherapie" ] - }, - "extension": [ { - "url": "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Extension-StellungZurOp", - "valueCodeableConcept": { - "coding": [ { - "system": "http://dktk.dkfz.de/fhir/onco/core/CodeSystem/SYSTStellungOPCS", - "code": "O", - "display": "ohne Bezug zu einer operativen Therapie" - } ] - } - }, { - "url": "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Extension-SYSTIntention", - "valueCodeableConcept": { - "coding": [ { - "system": "http://dktk.dkfz.de/fhir/onco/core/CodeSystem/SYSTIntentionCS", - "code": "K", - "display": "kurativ" - } ] - } - } ], - "status": "completed", - "category": { - "coding": [ { - "system": "http://dktk.dkfz.de/fhir/onco/core/CodeSystem/SYSTTherapieartCS", - "code": "CI", - "display": "Chemo- + Immun-/Antikörpertherapie" - } ] - }, - "medicationCodeableConcept": { - "extension": [ { - "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", - "valueCode": "not-applicable" - } ] - }, - "subject": { - "reference": "Patient/358f64e184a86f78bdb65a8fd8b841e86ad0db7c97318b0f00eaf81832eb246f", - "identifier": { - "type": { - "coding": [ { - "system": "http://terminology.hl7.org/CodeSystem/v2-0203", - "code": "MR" - } ] - }, - "system": "https://fhir.diz.uk-erlangen.de/identifiers/patient-id", - "value": "1055555777" - } - }, - "effectivePeriod": { - "start": "2021-05-22", - "end": "2021-07-20" - }, - "reasonReference": [ { - "reference": "Condition/8e6a9b1e5b4d768f616395dd89b82e4145a16941c08d17fe1bb8a70bc1353412" - } ] - }, - "request": { - "method": "PUT", - "url": "MedicationStatement/3a6f9e3df20464337ff932ea9833acdfc92c3dd4afa444f2d1bf900627eec020" - } - }, { - "fullUrl": "MedicationStatement/ea3bdcd0ac67e6103589595775d905b521ca5ce5370018e7b738e0806fde2821", - "resource": { - "resourceType": "MedicationStatement", - "id": "ea3bdcd0ac67e6103589595775d905b521ca5ce5370018e7b738e0806fde2821", - "meta": { - "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:2.0.3", - "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-MedicationStatement-Systemtherapie" ] - }, - "extension": [ { - "url": "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Extension-StellungZurOp", - "valueCodeableConcept": { - "coding": [ { - "system": "http://dktk.dkfz.de/fhir/onco/core/CodeSystem/SYSTStellungOPCS", - "code": "O", - "display": "ohne Bezug zu einer operativen Therapie" - } ] - } - }, { - "url": "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Extension-SYSTIntention", - "valueCodeableConcept": { - "coding": [ { - "system": "http://dktk.dkfz.de/fhir/onco/core/CodeSystem/SYSTIntentionCS", - "code": "K", - "display": "kurativ" - } ] - } - } ], - "partOf": [ { - "reference": "MedicationStatement/3a6f9e3df20464337ff932ea9833acdfc92c3dd4afa444f2d1bf900627eec020" - } ], - "status": "completed", - "category": { - "coding": [ { - "system": "http://dktk.dkfz.de/fhir/onco/core/CodeSystem/SYSTTherapieartCS", - "code": "CI", - "display": "Chemo- + Immun-/Antikörpertherapie" - } ] - }, - "medicationCodeableConcept": { - "text": "Cyclophosphamid" - }, - "subject": { - "reference": "Patient/358f64e184a86f78bdb65a8fd8b841e86ad0db7c97318b0f00eaf81832eb246f", - "identifier": { - "type": { - "coding": [ { - "system": "http://terminology.hl7.org/CodeSystem/v2-0203", - "code": "MR" - } ] - }, - "system": "https://fhir.diz.uk-erlangen.de/identifiers/patient-id", - "value": "1055555777" - } - }, - "effectivePeriod": { - "start": "2021-05-22", - "end": "2021-07-20" - }, - "reasonReference": [ { - "reference": "Condition/8e6a9b1e5b4d768f616395dd89b82e4145a16941c08d17fe1bb8a70bc1353412" - } ] - }, - "request": { - "method": "PUT", - "url": "MedicationStatement/ea3bdcd0ac67e6103589595775d905b521ca5ce5370018e7b738e0806fde2821" - } - }, { - "fullUrl": "MedicationStatement/3eb18c984d23b8a3bbf02fe2c2cb385c5f9ec86602c8fb2749dae763b1ad79e5", - "resource": { - "resourceType": "MedicationStatement", - "id": "3eb18c984d23b8a3bbf02fe2c2cb385c5f9ec86602c8fb2749dae763b1ad79e5", - "meta": { - "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:2.0.3", - "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-MedicationStatement-Systemtherapie" ] - }, - "extension": [ { - "url": "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Extension-StellungZurOp", - "valueCodeableConcept": { - "coding": [ { - "system": "http://dktk.dkfz.de/fhir/onco/core/CodeSystem/SYSTStellungOPCS", - "code": "O", - "display": "ohne Bezug zu einer operativen Therapie" - } ] - } - }, { - "url": "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Extension-SYSTIntention", - "valueCodeableConcept": { - "coding": [ { - "system": "http://dktk.dkfz.de/fhir/onco/core/CodeSystem/SYSTIntentionCS", - "code": "K", - "display": "kurativ" - } ] - } - } ], - "partOf": [ { - "reference": "MedicationStatement/3a6f9e3df20464337ff932ea9833acdfc92c3dd4afa444f2d1bf900627eec020" - } ], - "status": "completed", - "category": { - "coding": [ { - "system": "http://dktk.dkfz.de/fhir/onco/core/CodeSystem/SYSTTherapieartCS", - "code": "CI", - "display": "Chemo- + Immun-/Antikörpertherapie" - } ] - }, - "medicationCodeableConcept": { - "text": "Methotrexat (MTX)" - }, - "subject": { - "reference": "Patient/358f64e184a86f78bdb65a8fd8b841e86ad0db7c97318b0f00eaf81832eb246f", - "identifier": { - "type": { - "coding": [ { - "system": "http://terminology.hl7.org/CodeSystem/v2-0203", - "code": "MR" - } ] - }, - "system": "https://fhir.diz.uk-erlangen.de/identifiers/patient-id", - "value": "1055555777" - } - }, - "effectivePeriod": { - "start": "2021-05-22", - "end": "2021-07-20" - }, - "reasonReference": [ { - "reference": "Condition/8e6a9b1e5b4d768f616395dd89b82e4145a16941c08d17fe1bb8a70bc1353412" - } ] - }, - "request": { - "method": "PUT", - "url": "MedicationStatement/3eb18c984d23b8a3bbf02fe2c2cb385c5f9ec86602c8fb2749dae763b1ad79e5" - } - }, { - "fullUrl": "MedicationStatement/328a01d32491f06ac6ab8564d059cc313390645329af4539a2185cafb7c92c8d", - "resource": { - "resourceType": "MedicationStatement", - "id": "328a01d32491f06ac6ab8564d059cc313390645329af4539a2185cafb7c92c8d", - "meta": { - "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:2.0.3", - "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-MedicationStatement-Systemtherapie" ] - }, - "extension": [ { - "url": "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Extension-StellungZurOp", - "valueCodeableConcept": { - "coding": [ { - "system": "http://dktk.dkfz.de/fhir/onco/core/CodeSystem/SYSTStellungOPCS", - "code": "O", - "display": "ohne Bezug zu einer operativen Therapie" - } ] - } - }, { - "url": "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Extension-SYSTIntention", - "valueCodeableConcept": { - "coding": [ { - "system": "http://dktk.dkfz.de/fhir/onco/core/CodeSystem/SYSTIntentionCS", - "code": "K", - "display": "kurativ" - } ] - } - } ], - "partOf": [ { - "reference": "MedicationStatement/3a6f9e3df20464337ff932ea9833acdfc92c3dd4afa444f2d1bf900627eec020" - } ], - "status": "completed", - "category": { - "coding": [ { - "system": "http://dktk.dkfz.de/fhir/onco/core/CodeSystem/SYSTTherapieartCS", - "code": "CI", - "display": "Chemo- + Immun-/Antikörpertherapie" - } ] - }, - "medicationCodeableConcept": { - "text": "Cytarabin (AraC)" - }, - "subject": { - "reference": "Patient/358f64e184a86f78bdb65a8fd8b841e86ad0db7c97318b0f00eaf81832eb246f", - "identifier": { - "type": { - "coding": [ { - "system": "http://terminology.hl7.org/CodeSystem/v2-0203", - "code": "MR" - } ] - }, - "system": "https://fhir.diz.uk-erlangen.de/identifiers/patient-id", - "value": "1055555777" - } - }, - "effectivePeriod": { - "start": "2021-05-22", - "end": "2021-07-20" - }, - "reasonReference": [ { - "reference": "Condition/8e6a9b1e5b4d768f616395dd89b82e4145a16941c08d17fe1bb8a70bc1353412" - } ] - }, - "request": { - "method": "PUT", - "url": "MedicationStatement/328a01d32491f06ac6ab8564d059cc313390645329af4539a2185cafb7c92c8d" - } - }, { - "fullUrl": "MedicationStatement/d2aa80723b3d9fa509c68ef373c0963fb20bffe801aeecc72c81c806160ddd0f", - "resource": { - "resourceType": "MedicationStatement", - "id": "d2aa80723b3d9fa509c68ef373c0963fb20bffe801aeecc72c81c806160ddd0f", - "meta": { - "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:2.0.3", - "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-MedicationStatement-Systemtherapie" ] - }, - "extension": [ { - "url": "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Extension-StellungZurOp", - "valueCodeableConcept": { - "coding": [ { - "system": "http://dktk.dkfz.de/fhir/onco/core/CodeSystem/SYSTStellungOPCS", - "code": "O", - "display": "ohne Bezug zu einer operativen Therapie" - } ] - } - }, { - "url": "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Extension-SYSTIntention", - "valueCodeableConcept": { - "coding": [ { - "system": "http://dktk.dkfz.de/fhir/onco/core/CodeSystem/SYSTIntentionCS", - "code": "K", - "display": "kurativ" - } ] - } - } ], - "partOf": [ { - "reference": "MedicationStatement/3a6f9e3df20464337ff932ea9833acdfc92c3dd4afa444f2d1bf900627eec020" - } ], - "status": "completed", - "category": { - "coding": [ { - "system": "http://dktk.dkfz.de/fhir/onco/core/CodeSystem/SYSTTherapieartCS", - "code": "CI", - "display": "Chemo- + Immun-/Antikörpertherapie" - } ] - }, - "medicationCodeableConcept": { - "text": "Mercaptopurin (6-MP, Purinethol)" - }, - "subject": { - "reference": "Patient/358f64e184a86f78bdb65a8fd8b841e86ad0db7c97318b0f00eaf81832eb246f", - "identifier": { - "type": { - "coding": [ { - "system": "http://terminology.hl7.org/CodeSystem/v2-0203", - "code": "MR" - } ] - }, - "system": "https://fhir.diz.uk-erlangen.de/identifiers/patient-id", - "value": "1055555777" - } - }, - "effectivePeriod": { - "start": "2021-05-22", - "end": "2021-07-20" - }, - "reasonReference": [ { - "reference": "Condition/8e6a9b1e5b4d768f616395dd89b82e4145a16941c08d17fe1bb8a70bc1353412" - } ] - }, - "request": { - "method": "PUT", - "url": "MedicationStatement/d2aa80723b3d9fa509c68ef373c0963fb20bffe801aeecc72c81c806160ddd0f" - } - } ] -} diff --git a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.mapObservation_withGivenAdtXml.001_1.Pat_2Tumoren_TumorID_1_Diagnose.xml.003_Pat1_Tumor1_Therapie1_Behandlungsende_OP.xml.010_Pat2_Tumor1_Tod.xml.approved.fhir.json b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.mapObservation_withGivenAdtXml.001_1.003_P.010_P.approved.fhir.json similarity index 100% rename from src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.mapObservation_withGivenAdtXml.001_1.Pat_2Tumoren_TumorID_1_Diagnose.xml.003_Pat1_Tumor1_Therapie1_Behandlungsende_OP.xml.010_Pat2_Tumor1_Tod.xml.approved.fhir.json rename to src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.mapObservation_withGivenAdtXml.001_1.003_P.010_P.approved.fhir.json diff --git a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.mapObservation_withGivenAdtXml.001_1.Pat_2Tumoren_TumorID_1_Diagnose.xml.approved.fhir.json b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.mapObservation_withGivenAdtXml.001_1.approved.fhir.json similarity index 100% rename from src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.mapObservation_withGivenAdtXml.001_1.Pat_2Tumoren_TumorID_1_Diagnose.xml.approved.fhir.json rename to src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.mapObservation_withGivenAdtXml.001_1.approved.fhir.json diff --git a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.mapProcedure_withGivenAdtXml.003_Pat1_Tumor1_Therapie1_Behandlungsende_OP.xml.approved.fhir.json b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.mapProcedure_withGivenAdtXml.003_P.approved.fhir.json similarity index 100% rename from src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.mapProcedure_withGivenAdtXml.003_Pat1_Tumor1_Therapie1_Behandlungsende_OP.xml.approved.fhir.json rename to src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.mapProcedure_withGivenAdtXml.003_P.approved.fhir.json diff --git a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.mapProcedure_withGivenAdtXml.007_Pat2_Tumor1_Behandlungsende_ST.xml.approved.fhir.json b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.mapProcedure_withGivenAdtXml.007_P.approved.fhir.json similarity index 100% rename from src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.mapProcedure_withGivenAdtXml.007_Pat2_Tumor1_Behandlungsende_ST.xml.approved.fhir.json rename to src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.mapProcedure_withGivenAdtXml.007_P.approved.fhir.json