Home
last modified time | relevance | path

Searched refs:STATIC_REQUIRE (Results 1 – 6 of 6) sorted by relevance

/external/catch2/docs/
Dother-macros.md60 * `STATIC_REQUIRE`
62 `STATIC_REQUIRE( expr )` is a macro that can be used the same way as a
70 TEST_CASE("STATIC_REQUIRE showcase", "[traits]") {
71 STATIC_REQUIRE( std::is_void<void>::value );
Drelease-notes.md142 * Added `STATIC_REQUIRE` macro (#1356, #1362)
/external/catch2/projects/SelfTest/UsageTests/
DGenerators.tests.cpp177 STATIC_REQUIRE(std::is_same<decltype(val), int>::value);
182 STATIC_REQUIRE(std::is_same<decltype(val), double>::value);
DCompilation.tests.cpp192 STATIC_REQUIRE( std::is_void<void>::value );
/external/catch2/include/
Dcatch.hpp247 #define STATIC_REQUIRE( ... ) static_assert( __VA_ARGS__, #__VA_ARGS__ ); SUCCEED( #__VA_A… macro
250 #define STATIC_REQUIRE( ... ) REQUIRE( __VA_ARGS__ ) macro
411 #define STATIC_REQUIRE( ... ) (void)(0) macro
/external/catch2/single_include/catch2/
Dcatch.hpp14731 #define STATIC_REQUIRE( ... ) static_assert( __VA_ARGS__, #__VA_ARGS__ ); SUCCEED( #__VA_A… macro
14734 #define STATIC_REQUIRE( ... ) REQUIRE( __VA_ARGS__ ) macro
14894 #define STATIC_REQUIRE( ... ) (void)(0) macro