MCPcopy Create free account
hub / github.com/apache/qpid-proton / serializeFilters

Function serializeFilters

tests/include/catch.hpp:15807–15820  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 3

printTestFiltersMethod · 0.85
writeGroupMethod · 0.85
testRunStartingMethod · 0.85

Calls 1

strMethod · 0.45

Tested by

no test coverage detected