package fr.mch.mdo.applets; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; /** * Unit test for PrinterAppletTest. */ public class PrinterAppletTest extends TestCase { /** * Create the test case * * @param testName * name of the test case */ public PrinterAppletTest(String testName) { super(testName); } /** * @return the suite of tests being tested */ public static Test suite() { return new TestSuite(PrinterAppletTest.class); } public void testInit() { } public void testGetLine() { } public void testPrint() { } public void testResetDataBuffer() { } public void testAddData1() { } public void testAddData2() { } public void testBindSpecialCaracters() { } public void testPrinter() { } public void testPrinterOpenSerialPort() { } public void testPrinterCloseSerialPort() { } public void testPrinterPrintData() { } public void testThreadPrinter() { } public void testThreadRun() { } }