Added Javadoc to test files.

This commit is contained in:
amadoste
2021-11-12 11:11:03 +01:00
parent ac8f8218d4
commit cfafd92f7b
4 changed files with 46 additions and 18 deletions
+12 -4
View File
@@ -4,26 +4,34 @@ import org.junit.jupiter.api.Test;
import java.util.ArrayList;
/**
* New class TextOutputTest
* This class is here to test the class TextOutput and to test the console output of that class.
* Author: Leonardo Brandenberger
* Date: 12.11.2021
*/
class TextOutputTest {
TextOutput textOutput;
ArrayList<String> text;
/**
* This method is here as a preparation for the test.
*/
@BeforeEach
public void setup() {
textOutput = new TextOutput();
textOutput.formatFix(20);
//textOutput.formatRaw();
text = new ArrayList<>();
text.add("Virtute praecedunt, quod fere cotidianis proeliis cum Germanis contendunt, septentr ionesimmensoslongusw ordos.");
text.add("Virtutedasjdhashdkjhakjdhakdshjkashd praecedunt, quod fere cotidianis proeliis cum");
//text.add("ordos.");
text.add("1234");
text.add("12417575147517845 445264565");
text.add(" ");
//text.add("1eeeeeee8597389751");
//text.add("TextTextTextTextTextTextTextTextTextTextTextTextTextText TextTextTextTextTextTextTextTextTextTextTextText TextTextText");
}
/**
* This method is the test to show if the console output works as we expect it to.
*/
@Test
public void print() {
textOutput.print(text);
+9 -2
View File
@@ -3,10 +3,18 @@ import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import java.util.ArrayList;
/**
* New class TextTest
* This class is here to test the different methods of the Text class.
* Author: Roman Schenk, Andrin Fassbind
* Date: 12.11.2021
*/
public class TextTest {
Text txt;
/**
* This method is here as a preparation for the test.
*/
@BeforeEach
void setup() {
txt = new Text();
@@ -32,7 +40,6 @@ public class TextTest {
}
/**
*
* Test Method del
*/
@Test