910111213141516171819
public class TimeOutTest { @Test public void testDefault() { TimeOut command = new TimeOut(); CommandOutputBuilder output = new CommandOutputBuilder(); output.printLn("! UTILITIES"); output.printLn("TIMEOUT 0"); output.printLn("PRINT");
2122232425262728293031
assertCommand(output, command); } @Test public void test() { TimeOut command = new TimeOut(10); CommandOutputBuilder output = new CommandOutputBuilder(); output.printLn("! UTILITIES"); output.printLn("TIMEOUT 10"); output.printLn("PRINT");
333435363738394041
assertCommand(output, command); } @Test(expected = ValidationException.class) public void testValidation() { TimeOut command = new TimeOut(-1); command.getCommandByteArray(); }
40414243444546474849
command.getCommandByteArray(); } @Test public void testFake() { TimeOut command = new TimeOut(); command.setTimeout(0); command.getTimeout(); command.toString(); }