Home | History | Annotate | Download | only in gtest

Lines Matching defs:TestInfo

318 // A TestInfo object stores the following information about a test:
326 // The constructor of TestInfo registers itself with the UnitTest
329 class TestInfo {
331 // Destructs a TestInfo object. This function is not virtual, so
332 // don't inherit from TestInfo.
333 ~TestInfo();
335 // Creates a TestInfo object and registers it with the UnitTest
349 static TestInfo* MakeAndRegisterInstance(
398 // Constructs a TestInfo object.
399 TestInfo(const char* test_case_name, const char* name,
405 GTEST_DISALLOW_COPY_AND_ASSIGN(TestInfo);
495 // Returns the TestInfo object for the test that's currently running,
497 const TestInfo* current_test_info() const;