Package it.stefanobertini.zebra.cpcl.labelmode

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

package it.stefanobertini.zebra.cpcl.labelmode;

import static it.stefanobertini.zebra.CommandAssert.assertCommand;
import it.stefanobertini.zebra.CommandOutputBuilder;
import it.stefanobertini.zebra.beans.Position;
import it.stefanobertini.zebra.cpcl.labelmode.ScaleToFit;
import it.stefanobertini.zebra.enums.Orientation;

import org.junit.Test;

public class ScaleToFitTest {

    @Test
    public void test() {
  ScaleToFit command = new ScaleToFit(Orientation.horizontal, "PLL_LAT.CSF", 40, 10, new Position(0, 10), "SALE");

  CommandOutputBuilder output = new CommandOutputBuilder();
  output.printLn("SCALE-TO-FIT PLL_LAT.CSF 40 10 0 10 SALE");

  assertCommand(output, command);
    }

}
TOP

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

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.