added Test Method for add and dummy method in TextTest.java

This commit is contained in:
schrom01 2021-11-10 13:55:59 +01:00
parent 580eedd3c6
commit 8baea9f140
1 changed files with 19 additions and 0 deletions

View File

@ -14,6 +14,25 @@ public class TextTest {
txt = new Text(); txt = new Text();
} }
/**
* Test Method for add and dummy methods
*/
@Test
void addTest() {
Assertions.assertEquals(0, txt.getText().size());
Assertions.assertEquals(false, txt.add(1, "test"));
Assertions.assertEquals(false, txt.dummy(1));
Assertions.assertEquals(0, txt.getText().size());
Assertions.assertEquals(true, txt.add("test1"));
Assertions.assertEquals(true, txt.add(1, "test2"));
Assertions.assertEquals("test2", txt.getText().get(0));
Assertions.assertEquals("test1", txt.getText().get(1));
Assertions.assertEquals(true, txt.dummy(2));
Assertions.assertEquals(true, txt.dummy());
Assertions.assertEquals(true, txt.getText().get(1).equals(txt.getText().get(3)));
Assertions.assertEquals(4, txt.getText().size());
}
@Test @Test
void indexTest() { void indexTest() {
txt.add("Hallo ?Hallo> zusammen !test!"); txt.add("Hallo ?Hallo> zusammen !test!");