Package it.stefanobertini.zebra.cpcl.labelmode

Examples of it.stefanobertini.zebra.cpcl.labelmode.Pattern


public class PatternTest {

    @Test
    public void testString() {
  Pattern command = new Pattern("106");

  CommandOutputBuilder output = new CommandOutputBuilder();
  output.printLn("PATTERN 106");

  assertCommand(output, command);
View Full Code Here


  assertCommand(output, command);
    }

    @Test
    public void testEnum() {
  Pattern command = new Pattern(PatternType.crossHatckPattern);

  CommandOutputBuilder output = new CommandOutputBuilder();
  output.printLn("PATTERN 106");

  assertCommand(output, command);
View Full Code Here

  assertCommand(output, command);
    }

    @Test(expected = ValidationException.class)
    public void testValidation() {
  Pattern command = new Pattern();

  command.getCommandByteArray();
    }
View Full Code Here

TOP

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

Copyright © 2018 www.massapicom. 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.