(tmp_path, use_compdb=False, use_addons=False, use_clang_tidy=False)
| 1045 | |
| 1046 | |
| 1047 | def __test_showtime_file(tmp_path, use_compdb=False, use_addons=False, use_clang_tidy=False): |
| 1048 | exp_res = 79 |
| 1049 | # project analysis does not call Preprocessor::getConfig() |
| 1050 | if use_compdb: |
| 1051 | exp_res -= 1 |
| 1052 | __test_showtime(tmp_path, 'file', exp_res, 'Check time: ', use_compdb=use_compdb, use_addons=use_addons, use_clang_tidy=use_clang_tidy) |
| 1053 | |
| 1054 | |
| 1055 | def test_showtime_file(tmp_path): |
no test coverage detected