testC1 static method

void testC1(
  1. TermareController controller
)

Implementation

static void testC1(TermareController controller) {
  print(_spiltLine('C1 TEST START'));
  controller.write(_spiltLine('C1 TEST START'));
  controller.write(
    getTestChar(r'Index\x84*', 'Index\x84*'),
  );
  controller.write(
    getTestChar(r'Next Line\x85*', 'Next Line\x85*'),
  );
  controller.write(
    getTestChar(
      r'Horizontal\x88 Tabulation Set',
      'Horizontal\x88 Tabulation Set',
    ),
  );
  controller.write(
    getTestChar(r'Device Control String\x90', 'Device Control String\x90'),
  );
  controller.write(
    getTestChar(
      r'Control Sequence Introducer\x9b',
      'Control Sequence Introducer\x9b ',
    ),
  );
  controller.write(
    getTestChar(
      r'String Terminator\x9c',
      'String Terminator\x9c',
    ),
  );
  controller.write(
    getTestChar(
      r'Operating System Command\x9d ',
      'Operating System Command\x9d0;termare\x07 ',
    ),
  );
  controller.write(
    getTestChar(
      r'Privacy Message\x9e',
      'Privacy Message\x9e',
    ),
  );
  controller.write(
    getTestChar(
      r'Application Program Command\x9f',
      'Application Program Command\x9f',
    ),
  );
  controller.write(_spiltLine('C1 TEST END'));
  print(_spiltLine('C1 TEST END'));
}