I have an integration test that is something like:
TEST(foo, test_many_foos) {
foo_builder sut;
sut.set_some_params();
sut.run();
for (const auto foo : sut) {
EXPECT_TRUE(some_check(foo));
}
// TODO: Print a summary of how many EXPECT_TRUEs failed
}
Is there a way that I can print out a summary of the results of all of the EXPECT calls at the end of the test?