From c12258a35406a35fae33904d85fa2c7313852b73 Mon Sep 17 00:00:00 2001
From: OZGCloud <ozgcloud@mgm-tp.com>
Date: Fri, 26 Jan 2024 17:36:48 +0100
Subject: [PATCH] OZG-4693 extend antragsteller test factory

---
 .../eingang/common/formdata/AntragstellerTestFactory.java | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/common/src/test/java/de/ozgcloud/eingang/common/formdata/AntragstellerTestFactory.java b/common/src/test/java/de/ozgcloud/eingang/common/formdata/AntragstellerTestFactory.java
index ce9d59c38..c3f5320bc 100644
--- a/common/src/test/java/de/ozgcloud/eingang/common/formdata/AntragstellerTestFactory.java
+++ b/common/src/test/java/de/ozgcloud/eingang/common/formdata/AntragstellerTestFactory.java
@@ -43,6 +43,10 @@ public class AntragstellerTestFactory {
 	public static final String GEBURTSDATUM = "30.8.1955";
 	public static final String GEBURTSORT = "Mülheim an der Ruhr";
 	public static final String EMAIL = "schneider@helgeschneider.local";
+	public static final String STRASSE = "Musterstraße";
+	public static final String HAUSNUMMER = "1";
+	public static final String PLZ = "12345";
+	public static final String ORT = "Musterstadt";
 	public static final String TELEFON = "+ 0176 888 666 222XX";
 	public static final String POSTFACH_ID = UUID.randomUUID().toString();
 
@@ -60,6 +64,10 @@ public class AntragstellerTestFactory {
 				.geburtsort(GEBURTSORT)
 				.email(EMAIL)
 				.telefon(TELEFON)
+				.strasse(STRASSE)
+				.hausnummer(HAUSNUMMER)
+				.plz(PLZ)
+				.ort(ORT)
 				.postfachId(POSTFACH_ID)
 				.data(Map.of(GEBIET_BEZEICHNUNG_KEY, GEBIET_BEZEICHNUNG_VALUE,
 						SUB_PERSOENLICHE_EIGNUNG,
-- 
GitLab