Merge remote-tracking branch 'origin/main'

This commit is contained in:
Leonardo Brandenberger
2021-11-08 10:59:42 +01:00
2 changed files with 36 additions and 32 deletions
+6 -3
View File
@@ -16,10 +16,13 @@ public class TextTest {
@Test
void indexTest() {
txt.add("Hallo Hallo zusammen !test!");
txt.add("Hallo ?Hallo> zusammen !test!");
txt.add("Hallo, wie zusammen");
txt.add("Hallo,wie wie zusammen");
txt.add("Hallo! Wie wie zusammen");
sListe= txt.index();
Assertions.assertEquals("Hallo 1, 2, 3",sListe.get(0));
for (String str : sListe){
System.out.println(str);
}
Assertions.assertEquals("Hallo 1, 2, 3",sListe.get(0));
}
}