Test -tl with missing arguments.
(self)
| 1698 | self.exec_with_omit(cmd, 7) |
| 1699 | |
| 1700 | def test_tl_missing_args(self) -> None: |
| 1701 | ''' |
| 1702 | Test -tl with missing arguments. |
| 1703 | ''' |
| 1704 | # Build a valid cmd |
| 1705 | cmd = [ |
| 1706 | self.binary, '-tl', |
| 1707 | self.get_ref_image_path('LDR', 'input', 'A'), |
| 1708 | self.get_tmp_image_path('LDR', 'decomp'), |
| 1709 | '4x4', '-fast'] |
| 1710 | |
| 1711 | # Run the cmd, incrementally omitting arguments |
| 1712 | self.exec_with_omit(cmd, 2) |
| 1713 | |
| 1714 | def test_tl_missing_input(self) -> None: |
| 1715 | ''' |
nothing calls this directly
no test coverage detected