diff --git a/src/test/java/hs/fulda/de/ci/exam/project/AccountTest.java b/src/test/java/hs/fulda/de/ci/exam/project/AccountTest.java index 5fef805..419ddc3 100644 --- a/src/test/java/hs/fulda/de/ci/exam/project/AccountTest.java +++ b/src/test/java/hs/fulda/de/ci/exam/project/AccountTest.java @@ -58,7 +58,7 @@ public class AccountTest { @Test @DisplayName("Should Not add Account details when Address is null") - public void shouldThrowRuntimeExceptionWhenAddressIsNull(){ + public void shouldThrowRuntimeExceptionWhenPersonAddressIsNull(){ assertThrows(RuntimeException.class, () -> { account1.addAccountDetails("John", null,"max.mustermann@gmail.com", "0151283290" ); });