910111213141516171819
public class SetSpacingTest { @Test public void test() { SetSpacing command = new SetSpacing(10); CommandOutputBuilder output = new CommandOutputBuilder(); output.printLn("! U1 SETSP 10"); assertCommand(output, command);
1920212223242526272829
assertCommand(output, command); } @Test public void testDefault() { SetSpacing command = new SetSpacing(); CommandOutputBuilder output = new CommandOutputBuilder(); output.printLn("! U1 SETSP 0"); assertCommand(output, command);
293031323334353637
assertCommand(output, command); } @Test(expected = ValidationException.class) public void testValidation() { SetSpacing command = new SetSpacing(-1); command.getCommandByteArray(); }