gruppe06-hufflepuff-projekt.../test/TextTest.java

48 lines
1.5 KiB
Java
Raw Normal View History

import org.junit.jupiter.api.Assertions;
2021-11-05 09:14:26 +01:00
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import java.util.ArrayList;
import java.util.HashMap;
2021-11-04 14:19:58 +01:00
public class TextTest {
2021-11-05 09:14:26 +01:00
Text txt;
ArrayList<String> sListe;
@BeforeEach
void setup() {
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());
}
2021-11-05 09:14:26 +01:00
@Test
void indexTest() {
txt.add("Hallo ?Hallo> zusammen !test!");
txt.add("Hallo, wie zusammen");
txt.add("Hallo! Wie wie zusammen");
sListe= txt.index();
for (String str : sListe){
System.out.println(str);
}
Assertions.assertEquals("Hallo 1, 2, 3",sListe.get(0));
2021-11-05 09:14:26 +01:00
}
2021-11-04 14:19:58 +01:00
}