| 7699 | std::size_t listTestsNamesOnly( Config const& config ); |
| 7700 | |
| 7701 | struct TagInfo { |
| 7702 | void add( std::string const& spelling ); |
| 7703 | std::string all() const; |
| 7704 | |
| 7705 | std::set<std::string> spellings; |
| 7706 | std::size_t count = 0; |
| 7707 | }; |
| 7708 | |
| 7709 | std::size_t listTags( Config const& config ); |
| 7710 |