Lines Matching refs:TEST
33 #ifndef TEST
34 #define TEST(Name) \
35 static void Test##Name(); \
36 CcTest register_test_##Name(Test##Name, __FILE__, #Name, NULL, true); \
37 static void Test##Name()
42 static void Test##Name(); \
43 CcTest register_test_##Name(Test##Name, __FILE__, #Name, #Dep, true); \
44 static void Test##Name()
49 static void Test##Name(); \
50 CcTest register_test_##Name(Test##Name, __FILE__, #Name, NULL, false); \
51 static void Test##Name()
82 // A test is augmented with calls to ApiTestFuzzer::Fuzz() in its
84 // thread fuzzing test. In the thread fuzzing test it will
86 // to that thread, suspending the current test.
110 // This method switches threads if we are running the Threading test.
130 static void Test##Name(); \
131 RegisterThreadedTest register_##Name(Test##Name, #Name); \
132 /* */ TEST(Name)