Test -tl with an unknown input file extension.
(self)
| 1725 | self.exec(cmd) |
| 1726 | |
| 1727 | def test_tl_unknown_input(self) -> None: |
| 1728 | ''' |
| 1729 | Test -tl with an unknown input file extension. |
| 1730 | ''' |
| 1731 | # Build an otherwise valid cmd with the test flaw |
| 1732 | cmd = [ |
| 1733 | self.binary, '-tl', |
| 1734 | './Test/Data/empty.unk', |
| 1735 | self.get_tmp_image_path('LDR', 'decomp'), |
| 1736 | '4x4', '-fast'] |
| 1737 | |
| 1738 | self.exec(cmd) |
| 1739 | |
| 1740 | def test_tl_missing_output(self) -> None: |
| 1741 | ''' |
nothing calls this directly
no test coverage detected