(e4657a741c23c8f48e0e97ae2091dc2d99f4f27d)
Go to the source code of this file.
◆ STR_IN_OUT_CASE
| #define STR_IN_OUT_CASE |
( |
| input_literal, |
|
|
| expected_literal, |
|
|
| ... ) |
Value: { \
reinterpret_cast<const uint8_t*>(input_literal), \
sizeof(input_literal) - 1, \
reinterpret_cast<const uint8_t*>(expected_literal), \
sizeof(expected_literal) - 1, __VA_ARGS__ \
}
Definition at line 21 of file test_support.h.
◆ STR_IN_TEST_CASE
| #define STR_IN_TEST_CASE |
( |
| input_literal, |
|
|
| ... ) |
Value: { \
reinterpret_cast<const uint8_t*>(input_literal), \
sizeof(input_literal) - 1, __VA_ARGS__ \
}
Definition at line 15 of file test_support.h.