1011121314151617181920
public class OutOfPaperTest { @Test public void testDefault() { OutOfPaper command = new OutOfPaper(); CommandOutputBuilder output = new CommandOutputBuilder(); output.printLn("OUT-OF-PAPER PURGE 2"); assertCommand(output, command);
2021222324252627282930
assertCommand(output, command); } @Test public void test() { OutOfPaper command = new OutOfPaper(OutOfPaperMode.wait, 5); CommandOutputBuilder output = new CommandOutputBuilder(); output.printLn("OUT-OF-PAPER WAIT 5"); assertCommand(output, command);
303132333435363738
assertCommand(output, command); } @Test(expected = ValidationException.class) public void testValidation1() { OutOfPaper command = new OutOfPaper(OutOfPaperMode.wait, -1); command.getCommandByteArray(); }
373839404142434445
command.getCommandByteArray(); } @Test(expected = ValidationException.class) public void testValidation2() { OutOfPaper command = new OutOfPaper(null, 1); command.getCommandByteArray(); }