mirror of
https://github.com/catchorg/Catch2.git
synced 2025-05-03 05:23:52 +00:00
Previously, this would not print out any messages for the last CHECK ```cpp TEST_CASE("Foo") { INFO("Test case start"); for (int i = 0; i < 2; ++i) { INFO("The number is " << i); CHECK(i == 0); } CHECK(false); } ``` now it does.