added Test method del in TextTest.java

This commit is contained in:
schrom01 2021-11-11 11:33:10 +01:00
parent e1ea2803a3
commit 265d37ca2a
1 changed files with 17 additions and 0 deletions

View File

@ -31,6 +31,23 @@ public class TextTest {
Assertions.assertEquals(4, txt.getText().size()); Assertions.assertEquals(4, txt.getText().size());
} }
/**
*
* Test Method del
*/
@Test
void del() {
Assertions.assertEquals(true, txt.add("Das ist der erste Beispiel Text."));
Assertions.assertEquals(true, txt.add("Das ist der zweite Beispiel Text."));
Assertions.assertEquals(true, txt.add("Das ist der dritte Beispiel Text."));
Assertions.assertEquals(true, txt.add("Das ist der vierte Beispiel Text."));
Assertions.assertEquals(false, txt.del(5));
Assertions.assertEquals(true, txt.del(2));
Assertions.assertEquals(true, txt.del());
Assertions.assertEquals("Das ist der erste Beispiel Text.", txt.getText().get(0));
Assertions.assertEquals("Das ist der dritte Beispiel Text.", txt.getText().get(1));
}
/** /**
* Test Method for replace Method * Test Method for replace Method
*/ */