MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / serializeFilters

Function serializeFilters

extlibs/catch/include/catch/catch.hpp:14980–14993  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14978 }
14979
14980 std::string serializeFilters( std::vector<std::string> const& container ) {
14981 ReusableStringStream oss;
14982 bool first = true;
14983 for (auto&& filter : container)
14984 {
14985 if (!first)
14986 oss << ' ';
14987 else
14988 first = false;
14989
14990 oss << filter;
14991 }
14992 return oss.str();
14993 }
14994
14995 TestEventListenerBase::TestEventListenerBase(ReporterConfig const & _config)
14996 :StreamingReporterBase(_config) {}

Callers 3

printTestFiltersMethod · 0.85
writeGroupMethod · 0.85
testRunStartingMethod · 0.85

Calls 1

strMethod · 0.45

Tested by

no test coverage detected