Tests for Karte Class

Added tests for the Karte class.
master
Victor Hans-Georg Waitz 2024-03-26 00:47:42 +01:00
parent adca38fdae
commit 8cbe1471a0
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ class KarteTest {
for (int i = 0; i < successTestList.length; i++){
Karte testKarte = new Karte("Herz", successTestList[i]);
assertEquals(successResultList[i], testKarte.getPunkte());
assertEquals(successResultList[i], testKarte.getWert());
}
}
}