| 13 | { |
| 14 | |
| 15 | static std::string listKeys( const MR::UI::TestEngine::GroupEntry& group ) |
| 16 | { |
| 17 | std::string ret; |
| 18 | bool first = true; |
| 19 | for ( const auto& elem : group.elems ) |
| 20 | { |
| 21 | if ( first ) |
| 22 | first = false; |
| 23 | else |
| 24 | ret += ", "; |
| 25 | ret += '`'; |
| 26 | ret += elem.first; |
| 27 | ret += '`'; |
| 28 | } |
| 29 | return ret; |
| 30 | } |
| 31 | |
| 32 | static const Expected<const TestEngine::GroupEntry *> findGroup( std::span<const std::string> path ) |
| 33 | { |
no outgoing calls
no test coverage detected