Test -cl with an unknown input file extension.
(self)
| 1574 | self.exec(cmd) |
| 1575 | |
| 1576 | def test_cl_unknown_input(self) -> None: |
| 1577 | ''' |
| 1578 | Test -cl with an unknown input file extension. |
| 1579 | ''' |
| 1580 | # Build an otherwise valid cmd with the test flaw |
| 1581 | cmd = [ |
| 1582 | self.binary, '-cl', |
| 1583 | './Test/Data/empty.unk', |
| 1584 | self.get_tmp_image_path('LDR', 'comp'), |
| 1585 | '4x4', '-fast'] |
| 1586 | |
| 1587 | self.exec(cmd) |
| 1588 | |
| 1589 | def test_cl_missing_output(self) -> None: |
| 1590 | ''' |
nothing calls this directly
no test coverage detected