added method invalidInput
This commit is contained in:
parent
13cbaba268
commit
5040958240
|
@ -130,4 +130,11 @@ public class TextOutput {
|
||||||
public void errorInvalidCommand() {
|
public void errorInvalidCommand() {
|
||||||
System.err.println("Invalid Command");
|
System.err.println("Invalid Command");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method to give out the Error "Invalid Input".
|
||||||
|
*/
|
||||||
|
public void invalidInput() {
|
||||||
|
System.err.println("Invalid Input");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,7 +17,7 @@ class TextOutputTest {
|
||||||
text.add("Virtute praecedunt, quod fere cotidianis proeliis cum Germanis contendunt, septentr ionesimmensoslongusw ordos.");
|
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("Virtutedasjdhashdkjhakjdhakdshjkashd praecedunt, quod fere cotidianis proeliis cum");
|
||||||
//text.add("ordos.");
|
//text.add("ordos.");
|
||||||
//text.add("1234");
|
text.add("1234");
|
||||||
text.add("12417575147517845 445264565");
|
text.add("12417575147517845 445264565");
|
||||||
text.add(" ");
|
text.add(" ");
|
||||||
//text.add("1eeeeeee8597389751");
|
//text.add("1eeeeeee8597389751");
|
||||||
|
|
Loading…
Reference in New Issue