(self)
| 3209 | self.assertIn(msg, err) |
| 3210 | |
| 3211 | def test_cli_fail_no_filename(self): |
| 3212 | _, err = self.expect_failure() |
| 3213 | self.assertIn("no input files", err) |
| 3214 | |
| 3215 | def test_cli_fail_output_and_multiple_files(self): |
| 3216 | _, err = self.expect_failure("-o", "out.c", "input.c", "moreinput.c") |
nothing calls this directly
no test coverage detected