MCPcopy Create free account
hub / github.com/RenderKit/embree / serializeFilters

Function serializeFilters

tutorials/external/catch.hpp:13061–13074  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13059 }
13060
13061 std::string serializeFilters( std::vector<std::string> const& container ) {
13062 ReusableStringStream oss;
13063 bool first = true;
13064 for (auto&& filter : container)
13065 {
13066 if (!first)
13067 oss << ' ';
13068 else
13069 first = false;
13070
13071 oss << filter;
13072 }
13073 return oss.str();
13074 }
13075
13076 TestEventListenerBase::TestEventListenerBase(ReporterConfig const & _config)
13077 :StreamingReporterBase(_config) {}

Callers 3

printTestFiltersMethod · 0.85
writeGroupMethod · 0.85
testRunStartingMethod · 0.85

Calls 1

strMethod · 0.45

Tested by

no test coverage detected