26 lines
529 B
Java
26 lines
529 B
Java
import org.junit.jupiter.api.BeforeEach;
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
public class TextTest {
|
|
Text txt;
|
|
HashMap<String, ArrayList<Integer>> hMap;
|
|
ArrayList<String> sListe;
|
|
|
|
@BeforeEach
|
|
void setup() {
|
|
txt = new Text();
|
|
hMap = new HashMap<>();
|
|
sListe = new ArrayList<>();
|
|
sListe.add("Hallo hallo zusammen");
|
|
sListe.add("Hallo wie gehts");
|
|
}
|
|
|
|
@Test
|
|
void indexTest() {
|
|
}
|
|
}
|