MCPcopy Create free account
hub / github.com/apache/trafficserver / serializeFilters

Function serializeFilters

lib/catch2/catch.hpp:15803–15816  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 3

printTestFiltersMethod · 0.85
writeGroupMethod · 0.85
testRunStartingMethod · 0.85

Calls 1

strMethod · 0.45

Tested by

no test coverage detected