Home | History | Annotate | Download | only in test

Lines Matching defs:Test

34 // Each actual test is represented by a Test instance.
36 class Test {
40 Test(const char* name, TestFunction* callback);
44 static Test* first() { return first_; }
45 static Test* last() { return last_; }
46 Test* next() { return next_; }
78 static Test* first_;
79 static Test* last_;
80 Test* next_;
93 // Define helper macros for test files.
95 // Macro to register a test. It instantiates a Test and registers its
98 void Test##Name(); \
99 Test test_##Name(#Name, &Test##Name); \
100 void Test##Name()