Test -tl with an unknown additional argument.
(self)
| 1795 | self.exec(cmd) |
| 1796 | |
| 1797 | def test_tl_bad_argument(self) -> None: |
| 1798 | ''' |
| 1799 | Test -tl with an unknown additional argument. |
| 1800 | ''' |
| 1801 | # Build an otherwise valid cmd with the test flaw |
| 1802 | cmd = [ |
| 1803 | self.binary, '-tl', |
| 1804 | self.get_ref_image_path('LDR', 'input', 'A'), |
| 1805 | self.get_tmp_image_path('LDR', 'decomp'), |
| 1806 | '4x4', '-fast', '-unknown'] |
| 1807 | |
| 1808 | self.exec(cmd) |
| 1809 | |
| 1810 | def test_dl_missing_args(self) -> None: |
| 1811 | ''' |
nothing calls this directly
no test coverage detected