MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/SPlisHSPlasH / serializeFilters

Function serializeFilters

extern/Catch2/catch.hpp:15805–15818  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15803 }
15804
15805 std::string serializeFilters( std::vector<std::string> const& container ) {
15806 ReusableStringStream oss;
15807 bool first = true;
15808 for (auto&& filter : container)
15809 {
15810 if (!first)
15811 oss << ' ';
15812 else
15813 first = false;
15814
15815 oss << filter;
15816 }
15817 return oss.str();
15818 }
15819
15820 TestEventListenerBase::TestEventListenerBase(ReporterConfig const & _config)
15821 :StreamingReporterBase(_config) {}

Callers 3

printTestFiltersMethod · 0.85
writeGroupMethod · 0.85
testRunStartingMethod · 0.85

Calls 1

strMethod · 0.45

Tested by

no test coverage detected