Test -tl with a missing input file.
(self)
| 1712 | self.exec_with_omit(cmd, 2) |
| 1713 | |
| 1714 | def test_tl_missing_input(self) -> None: |
| 1715 | ''' |
| 1716 | Test -tl with a missing input file. |
| 1717 | ''' |
| 1718 | # Build a valid cmd with a missing input file |
| 1719 | cmd = [ |
| 1720 | self.binary, '-tl', |
| 1721 | './Test/Data/missing.png', |
| 1722 | self.get_tmp_image_path('LDR', 'decomp'), |
| 1723 | '4x4', '-fast'] |
| 1724 | |
| 1725 | self.exec(cmd) |
| 1726 | |
| 1727 | def test_tl_unknown_input(self) -> None: |
| 1728 | ''' |
nothing calls this directly
no test coverage detected