1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
package com_braillo;
import java.io.IOException;
import javax.xml.parsers.ParserConfigurationException;
import org.daisy.braille.embosser.EmbosserFeatures;
import org.daisy.braille.embosser.UnsupportedWidthException;
import org.junit.Test;
import org.xml.sax.SAXException;
public class Braillo270EmbosserTest extends AbstractTestBraillo200Embosser {
public Braillo270EmbosserTest() {
super(new Braillo200_270_400_v12_16Embosser("Braillo 270", "Firmware 12 to 16. Embosser table must match hardware setup."));
emb.setFeature(EmbosserFeatures.PAGE_FORMAT, tractor_210mm_x_12inch);
}
@Test
public void testEmbossing() throws IOException, ParserConfigurationException, SAXException, UnsupportedWidthException {
performTest("resource-files/test-input-1.pef", "resource-files/test-input-1_braillo270_us_210mm_by_12inch.prn");
}
}
|