Define TEST_CASE
Synopsis
#include <include/catch.hpp>
#define TEST_CASE(...)
Description
No description yet.
Mentioned in
- Tutorial / Writing tests
- Tutorial / What did we do here?
- Tutorial / Test cases and sections
- Tutorial / BDD-Style
- Tutorial / Type parametrised test cases
- Writing tests / Matchers / In use
- Writing tests / Matchers / Custom matchers
- Writing tests / Logging Macros / Logging macros
- Writing tests / Logging Macros / Logging without local scope
- Writing tests / Test Cases And Sections / Test cases and sections
- Writing tests / Test Cases And Sections / Tags
- Writing tests / Test Cases And Sections / BDD-style test cases
- Writing tests / Test Cases And Sections / Type parametrised test cases
- 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
- Writing tests / Benchmarks / Benchmark specification
- Fine tuning / Compile-time configuration / Prefixing Catch macros
- Fine tuning / Compile-time configuration / CATCH_CONFIG_DISABLE
- Fine tuning / String conversions / Enums
- Running / Command Line / Specify the section to run
- Odds and ends / Cmake Integration / CMake integration
- Odds and ends / Cmake Integration / Automatic test registration
- FAQ / Slow Compiles / Practical example
- FAQ / Limitations / Sections nested in loops
- 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 / Fixes and minor improvements
- Other / Deprecations / ANON_TEST_CASE
- Other / Deprecations / Secondary description amongst tags
- Other / Deprecations / Change semantics of [.] and tag exclusion
Source
Line 243 in include/catch.hpp.
#define TEST_CASE(...) \
INTERNAL_CATCH_TESTCASE( __VA_ARGS__ )