(stdout_exp)
| 4369 | ] |
| 4370 | |
| 4371 | def run_and_assert_cppcheck(stdout_exp): |
| 4372 | exitcode, stdout, stderr = cppcheck(args) |
| 4373 | assert exitcode == 0, stdout |
| 4374 | assert stdout.splitlines() == stdout_exp |
| 4375 | assert stderr.splitlines() == stderr_exp |
| 4376 | |
| 4377 | test_file_s = str(test_file).replace('\\', '/') |
| 4378 | test_a1_file_s = str(test_a1_file).replace('\\', '/') |
no test coverage detected