Operatoren + und * hinzugefügt in Aufgabe1_Kellerautomat

This commit is contained in:
romanschenk37
2022-04-06 23:54:20 +02:00
parent 43539ca662
commit 03fc5b9712
2 changed files with 8 additions and 4 deletions
+2 -2
View File
@@ -6,12 +6,12 @@ class Aufgabe1_KellerautomatTest {
@Test
void calculate() {
String[] acceptableWords = {"ZZO", "ZZOZZOO", "ZZZOO"};
String[] acceptableWords = {"ZZ+", "ZZ*ZZ+*", "ZZZ*+"};
for (String word : acceptableWords) {
assertTrue(Aufgabe1_Kellerautomat.calculate(word));
}
String[] notAcceptableWords = {"ZZOO", "ZZOZZO", "ZOZ"};
String[] notAcceptableWords = {"ZZ*+", "ZZ+ZZ*", "Z*Z"};
for (String word : notAcceptableWords) {
assertFalse(Aufgabe1_Kellerautomat.calculate(word));
}