Searched defs:test_fixture (Results 1 – 1 of 1) sorted by relevance
| /arkcompiler/runtime_core/static_core/libpandabase/ |
| D | test_utilities.h | 26 #define DEATH_TEST_F(test_fixture, test_name) TEST_F(test_fixture, DISABLED_##test_name) argument 27 #define DEATH_TEST_P(test_fixture, test_name) TEST_P(test_fixture, DISABLED_##test_name) argument 28 #define DEATH_TEST(test_fixture, test_name) TEST(test_fixture, DISABLED_##test_name) argument 30 #define DEATH_TEST_F(test_fixture, test_name) TEST_F(test_fixture, test_name) argument 31 #define DEATH_TEST_P(test_fixture, test_name) TEST_P(test_fixture, test_name) argument 32 #define DEATH_TEST(test_fixture, test_name) TEST(test_fixture, test_name) argument
|