Package it.stefanobertini.zebra.cpcl.labelmode

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


public class CountryTest {

    @Test
    public void test() {
  Country command = new Country(CountryCode.italy);

  CommandOutputBuilder output = new CommandOutputBuilder();
  output.printLn("COUNTRY ITALY");

  assertCommand(output, command);
View Full Code Here


  assertCommand(output, command);
    }

    @Test
    public void testWithString() {
  Country command = new Country("ITALY");

  CommandOutputBuilder output = new CommandOutputBuilder();
  output.printLn("COUNTRY ITALY");

  assertCommand(output, command);
View Full Code Here

  assertCommand(output, command);
    }

    @Test
    public void testDefault() {
  Country command = new Country();

  CommandOutputBuilder output = new CommandOutputBuilder();
  output.printLn("COUNTRY USA");

  assertCommand(output, command);
View Full Code Here

TOP

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

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.