...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Conditionally run suites in a container.
template< class SequenceContainer, class Pred> bool run_each_if( SequenceContainer const& c, Pred pred = Pred{});
pred will be called as:
bool pred(suite_info const&);
true
if any conditions failed.