Package it.stefanobertini.zebra.cpcl.labelmode

Source Code of it.stefanobertini.zebra.cpcl.labelmode.OutOfPaperTest

package it.stefanobertini.zebra.cpcl.labelmode;

import static it.stefanobertini.zebra.CommandAssert.assertCommand;
import it.stefanobertini.zebra.CommandOutputBuilder;
import it.stefanobertini.zebra.ValidationException;
import it.stefanobertini.zebra.cpcl.labelmode.OutOfPaper;
import it.stefanobertini.zebra.enums.OutOfPaperMode;

import org.junit.Test;

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);
    }

    @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);
    }

    @Test(expected = ValidationException.class)
    public void testValidation1() {
  OutOfPaper command = new OutOfPaper(OutOfPaperMode.wait, -1);

  command.getCommandByteArray();
    }

    @Test(expected = ValidationException.class)
    public void testValidation2() {
  OutOfPaper command = new OutOfPaper(null, 1);

  command.getCommandByteArray();
    }
}
TOP

Related Classes of it.stefanobertini.zebra.cpcl.labelmode.OutOfPaperTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.