From 5de4efe0953510fe5d450bd10bccce2354825dba Mon Sep 17 00:00:00 2001 From: Peter Gapon Date: Tue, 25 Oct 2022 15:11:14 +0200 Subject: [PATCH] Test Update --- .../informatik/bank/facade/BanksystemTest.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Bank-Beispiel/src/de/hs_mannheim/informatik/bank/facade/BanksystemTest.java b/Bank-Beispiel/src/de/hs_mannheim/informatik/bank/facade/BanksystemTest.java index cef7348..b3bd930 100644 --- a/Bank-Beispiel/src/de/hs_mannheim/informatik/bank/facade/BanksystemTest.java +++ b/Bank-Beispiel/src/de/hs_mannheim/informatik/bank/facade/BanksystemTest.java @@ -2,6 +2,7 @@ package de.hs_mannheim.informatik.bank.facade; import static org.junit.Assert.assertTrue; import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import java.io.File; @@ -73,7 +74,7 @@ class BanksystemTest { System.out.println(arr[0]); System.out.println(arr2[0]); - assertTrue(arr2[0].contains("betrag=900")); + assertTrue(arr[0].contains("betrag=900")); } @Test @@ -95,5 +96,12 @@ class BanksystemTest { assertEquals(5, bs.zeigeSaldo(1000).size()); } + + @Test + void persistierenTest() throws Exception { + Banksystem bs = new Banksystem("Testsystem"); + + assertNotEquals(0, bs.getKontenliste().length); + } } \ No newline at end of file