| 7637 | } |
| 7638 | |
| 7639 | Option<std::size_t> list(Config const &config) { |
| 7640 | Option<std::size_t> listedCount; |
| 7641 | if (config.listTests()) |
| 7642 | listedCount = listedCount.valueOr(0) + listTests(config); |
| 7643 | if (config.listTestNamesOnly()) |
| 7644 | listedCount = listedCount.valueOr(0) + listTestsNamesOnly(config); |
| 7645 | if (config.listTags()) |
| 7646 | listedCount = listedCount.valueOr(0) + listTags(config); |
| 7647 | if (config.listReporters()) |
| 7648 | listedCount = listedCount.valueOr(0) + listReporters(config); |
| 7649 | return listedCount; |
| 7650 | } |
| 7651 | |
| 7652 | } // end namespace Catch |
| 7653 | // end catch_list.cpp |
no test coverage detected