Define REQUIRE
Synopsis
#include <include/catch.hpp>
#define REQUIRE(...)
Description
No description yet.
Mentioned in
- Tutorial / Writing tests
- Tutorial / What did we do here?
- Tutorial / Test cases and sections
- Tutorial / BDD-Style
- Writing tests / Assertion Macros / Natural Expressions
- Writing tests / Assertion Macros / Floating point comparisons
- Writing tests / Test Cases And Sections / Type parametrised test cases
- Writing tests / Test Cases And Sections / Examples
- Writing tests / Test Fixtures / Defining test fixtures
- Writing tests / Test Fixtures / Signature-based parametrised test fixtures
- Writing tests / Test Fixtures / Template fixtures with types specified in template type lists
- Writing tests / Data Generators / Data Generators
- Writing tests / Data Generators / Combining GENERATE and SECTION.
- Writing tests / Data Generators / Provided generators
- Writing tests / Other Macros / Assertion related macros
- Writing tests / Other Macros / Test case related macros
- Fine tuning / Compile-time configuration / Prefixing Catch macros
- Fine tuning / Compile-time configuration / CATCH_CONFIG_FAST_COMPILE
- Fine tuning / Compile-time configuration / Disabling exceptions
- Fine tuning / String conversions / Enums
- Fine tuning / String conversions / Floating point precision
- Running / Command Line / Aborting after a certain number of failures
- Running / Command Line / Warnings
- FAQ / Slow Compiles / Practical example
- FAQ / Limitations / Tests might be run again if last section fails
- FAQ / Limitations / Thread safe assertions
- Other / Release Notes / Improvements
- Other / Release Notes / Improvements
- Other / Release Notes / Improvements
- Other / Release Notes / Improvements
- Other / Release Notes / Fixes
- Other / Release Notes / Improvements and minor changes
- Other / Release Notes / Features/ Changes:
Source
Line 206 in include/catch.hpp.
#define REQUIRE(...) \
INTERNAL_CATCH_TEST( "REQUIRE", Catch::ResultDisposition::Normal, __VA_ARGS__ )