Skip to content
Snippets Groups Projects
Commit ec8d0d7c authored by Jan Zickermann's avatar Jan Zickermann
Browse files

KOP-2884 antragsteller: Test ort mapping

parent fd418a12
Branches
Tags
1 merge request!2Kop 2884 mapping von antragsteller
Pipeline #2251 passed
......@@ -124,6 +124,14 @@ class FSAntragstellerMapperTest {
assertThat(antragsteller.getPlz()).isEqualTo(PLZ);
}
@DisplayName("should map ort")
@Test
void shouldMapOrt() {
var antragsteller = mapAntragsteller();
assertThat(antragsteller.getOrt()).isEqualTo(ORT);
}
@DisplayName("should map empty data")
@Test
void shouldMapEmptyData() {
......@@ -239,6 +247,14 @@ class FSAntragstellerMapperTest {
assertThat(antragsteller.getPlz()).isEqualTo(PLZ);
}
@DisplayName("should map ort")
@Test
void shouldMapOrt() {
var antragsteller = mapAntragsteller();
assertThat(antragsteller.getOrt()).isEqualTo(ORT);
}
@DisplayName("should map empty data")
@Test
void shouldMapEmptyData() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment