catch2/include
Konstantin Baumann 060ed99f0c enhanced support for C++11 style nullptr
with these changes you can now write the following tests:

std::exception_ptr ex;
CATCH_REQUIRE(ex == nullptr);

and

std::unique_ptr<int> ptr;
CATCH_REQUIRE(ptr.get() == nullptr);

The issue was that you cannot cast a std::nullptr_t to a non-const
reference.
2013-01-31 12:25:57 +01:00
..
internal enhanced support for C++11 style nullptr 2013-01-31 12:25:57 +01:00
reporters Removed circular dependency between SectionInfo and its parent 2013-01-26 20:17:52 +00:00
catch_runner.hpp Fairly major reworking of console reporter (still in progress). 2013-01-13 21:51:44 +00:00
catch_with_main.hpp Builds almost completely cleanly with -WEverything in LLVM 2012-08-13 07:46:10 +01:00
catch.hpp IStreamingReporter is now the default. Use REGISTER_LEGACY_REPORTER to register… you guessed it: legacy reporters 2012-11-30 19:29:03 +00:00