(tmp_path, use_compdb=False, use_addons=False, use_clang_tidy=False)
| 1079 | |
| 1080 | |
| 1081 | def __test_showtime_summary(tmp_path, use_compdb=False, use_addons=False, use_clang_tidy=False): |
| 1082 | exp_res = 79 |
| 1083 | # project analysis does not call Preprocessor::getConfig() |
| 1084 | if use_compdb: |
| 1085 | exp_res -= 1 |
| 1086 | __test_showtime(tmp_path, 'summary', exp_res, 'Overall time: ', use_compdb=use_compdb, use_addons=use_addons, use_clang_tidy=use_clang_tidy) |
| 1087 | |
| 1088 | |
| 1089 | def test_showtime_summary(tmp_path): |
no test coverage detected