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_; }
69 static Test* first_;
70 static Test* last_;
71 Test* next_;
81 // Define helper macros for test files.
83 // Macro to register a test. It instantiates a Test and registers its
86 void Test##Name(); \
87 Test test_##Name(#Name, &Test##Name); \
88 void Test##Name()