Test -dl with missing arguments.
(self)
| 1808 | self.exec(cmd) |
| 1809 | |
| 1810 | def test_dl_missing_args(self) -> None: |
| 1811 | ''' |
| 1812 | Test -dl with missing arguments. |
| 1813 | ''' |
| 1814 | # Build a valid cmd |
| 1815 | cmd = [ |
| 1816 | self.binary, '-dl', |
| 1817 | self.get_ref_image_path('LDR', 'comp', 'A'), |
| 1818 | self.get_tmp_image_path('LDR', 'decomp')] |
| 1819 | |
| 1820 | # Run the cmd, incrementally omitting arguments |
| 1821 | self.exec_with_omit(cmd, 2) |
| 1822 | |
| 1823 | def test_dl_missing_output(self) -> None: |
| 1824 | ''' |
nothing calls this directly
no test coverage detected