27 lines
714 B
Java
27 lines
714 B
Java
import org.junit.jupiter.api.BeforeEach;
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
class TextOutputTest {
|
|
TextOutput textOutput;
|
|
ArrayList<String> text;
|
|
|
|
@BeforeEach
|
|
public void setup() {
|
|
textOutput = new TextOutput();
|
|
textOutput.formatFix(9);
|
|
textOutput.formatRaw();
|
|
text = new ArrayList<>();
|
|
text.add("123456789");
|
|
text.add("1234");
|
|
text.add("12 12 12");
|
|
text.add("1eeeeeee8597389751");
|
|
text.add("TextTextTextTextTextTextTextTextTextTextTextTextTextText TextTextTextTextTextTextTextTextTextTextTextText TextTextText");
|
|
}
|
|
|
|
@Test
|
|
public void print() {
|
|
textOutput.print(text);
|
|
}
|
|
} |