Merge remote-tracking branch 'origin/main' into main
This commit is contained in:
commit
3bfcf18800
|
@ -24,5 +24,21 @@
|
|||
<SOURCES />
|
||||
</library>
|
||||
</orderEntry>
|
||||
<orderEntry type="module-library" scope="TEST">
|
||||
<library name="JUnit5.7.0">
|
||||
<CLASSES>
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter/5.7.0/junit-jupiter-5.7.0.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-api/5.7.0/junit-jupiter-api-5.7.0.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/apiguardian/apiguardian-api/1.1.0/apiguardian-api-1.1.0.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/platform/junit-platform-commons/1.7.0/junit-platform-commons-1.7.0.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-params/5.7.0/junit-jupiter-params-5.7.0.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-engine/5.7.0/junit-jupiter-engine-5.7.0.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/platform/junit-platform-engine/1.7.0/junit-platform-engine-1.7.0.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</orderEntry>
|
||||
</component>
|
||||
</module>
|
|
@ -3,26 +3,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);
|
||||
|
|
|
@ -4,11 +4,19 @@ 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;
|
||||
ArrayList<String> stringListe;
|
||||
|
||||
/**
|
||||
* This method is here as a preparation for the test.
|
||||
*/
|
||||
@BeforeEach
|
||||
void setup() {
|
||||
stringListe = new ArrayList<>();
|
||||
|
@ -101,10 +109,4 @@ public class TextTest {
|
|||
stringListe = txt.index();
|
||||
Assertions.assertEquals(0, stringListe.size());
|
||||
}
|
||||
|
||||
@Test
|
||||
void testing() {
|
||||
txt.add("");
|
||||
txt.index();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue