Define CHECK
Synopsis
#include <include/catch.hpp>
#define CHECK(...)
Description
No description yet.
Mentioned in
- Writing tests / Assertion Macros / Natural Expressions
- Writing tests / Logging Macros / Logging macros
- Writing tests / Logging Macros / Logging without local scope
- Writing tests / Other Macros / Assertion related macros
- Writing tests / Other Macros / Test case related macros
- Writing tests / Benchmarks / Benchmark specification
- Fine tuning / Compile-time configuration / CATCH_CONFIG_FAST_COMPILE
- Running / Command Line / Aborting after a certain number of failures
- FAQ / Limitations / Thread safe assertions
- FAQ / Limitations / Visual Studio 2017 -- raw string literal in assert fails to compile
- FAQ / Limitations / Clang/G++ -- skipping leaf sections after an exception
- Other / Release Notes / Improvements
- Other / Release Notes / Improvements
- Other / Release Notes / Breaking changes
- Other / Release Notes / Features/ Changes:
Source
Line 217 in include/catch.hpp.
#define CHECK(...) \
INTERNAL_CATCH_TEST( "CHECK", Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )