catch2/include
Martin Hořeňovský b819432271 Don't clear out all messages upon printing an assertion.
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.
2017-04-29 17:50:03 +02:00
..
external Don’t assume first CL arg (exe name) is present 2017-03-13 11:00:58 +00:00
internal Don't clear out all messages upon printing an assertion. 2017-04-29 17:50:03 +02:00
reporters junit reporter does not count exceptions as failures if ok-to-fail 2017-04-11 15:47:42 +01:00
catch.hpp Fix order of arguments in CATCH_FAIL and nonvariadic INTERNAL_CATCH_MSG 2017-04-28 18:30:04 +02:00
catch_session.hpp use inline 'libraryVersion()' function (closes #858) 2017-03-22 15:51:02 +01:00
catch_with_main.hpp Fixed catch_with_main.hpp (no longer references deleted catch_runner.hpp) 2015-12-28 15:06:04 +00:00