Aufgabe1_KellerautomatTest erstellt.

This commit is contained in:
romanschenk37
2022-04-03 21:16:05 +02:00
parent 7cbe6169ee
commit 5309a7a555
2 changed files with 124 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class Aufgabe1_KellerautomatTest {
@Test
void calculate() {
String[] acceptableWords = {"ZZO", "ZZOZZOO", "ZZZOO"};
for (String word : acceptableWords) {
assertTrue(Aufgabe1_Kellerautomat.calculate(word));
}
String[] notAcceptableWords = {"ZZOO", "ZZOZZO", "ZOZ"};
for (String word : notAcceptableWords) {
assertFalse(Aufgabe1_Kellerautomat.calculate(word));
}
}
}