910111213141516171819
public class PageWidthTest { @Test public void test() { PageWidth command = new PageWidth(); CommandOutputBuilder output = new CommandOutputBuilder(); output.printLn("PAGE-WIDTH 0"); assertCommand(output, command);
1920212223242526272829
assertCommand(output, command); } @Test public void testDefault() { PageWidth command = new PageWidth(10); CommandOutputBuilder output = new CommandOutputBuilder(); output.printLn("PAGE-WIDTH 10"); assertCommand(output, command);
293031323334353637
assertCommand(output, command); } @Test(expected = ValidationException.class) public void testValidation() { PageWidth command = new PageWidth(-1); command.getCommandByteArray(); }