Test -cl with missing arguments.
(self)
| 1535 | self.exec(cmd_modified, expect_pass) |
| 1536 | |
| 1537 | def test_cl_missing_args(self) -> None: |
| 1538 | ''' |
| 1539 | Test -cl with missing arguments. |
| 1540 | ''' |
| 1541 | # Build a valid cmd |
| 1542 | cmd = [ |
| 1543 | self.binary, '-cl', |
| 1544 | self.get_ref_image_path('LDR', 'input', 'A'), |
| 1545 | self.get_tmp_image_path('LDR', 'comp'), |
| 1546 | '4x4', '-fast'] |
| 1547 | |
| 1548 | self.exec_with_omit(cmd, 2) |
| 1549 | |
| 1550 | def test_cl_missing_input(self) -> None: |
| 1551 | ''' |
nothing calls this directly
no test coverage detected