Lines Matching defs:TestInfo

1950   const TestInfo* const first_test_info = test_case->test_info_list()[0];
1955 const TestInfo* const this_test_info = impl->current_test_info();
2173 // class TestInfo
2175 // Constructs a TestInfo object. It assumes ownership of the test factory
2177 TestInfo::TestInfo(const std::string& a_test_case_name,
2194 // Destructs a TestInfo object.
2195 TestInfo::~TestInfo() { delete factory_; }
2199 // Creates a new TestInfo object and registers it with Google Test;
2214 // The newly created TestInfo instance will assume
2216 TestInfo* MakeAndRegisterTestInfo(
2225 TestInfo* const test_info =
2226 new TestInfo(test_case_name, name, type_param, value_param,
2255 // A predicate that checks the test name of a TestInfo against a known
2272 bool operator()(const TestInfo * test_info) const {
2300 void TestInfo::Run() {
2404 ForEach(test_info_list_, internal::Delete<TestInfo>);
2409 const TestInfo* TestCase::GetTestInfo(int i) const {
2416 TestInfo* TestCase::GetMutableTestInfo(int i) {
2423 void TestCase::AddTestInfo(TestInfo * test_info) {
2459 ForEach(test_info_list_, TestInfo::ClearTestResult);
2672 void PrintFullTestCommentIfPresent(const TestInfo& test_info) {
2705 virtual void OnTestStart(const TestInfo& test_info);
2707 virtual void OnTestEnd(const TestInfo& test_info);
2774 void PrettyUnitTestResultPrinter::OnTestStart(const TestInfo& test_info) {
2793 void PrettyUnitTestResultPrinter::OnTestEnd(const TestInfo& test_info) {
2844 const TestInfo& test_info = *test_case.GetTestInfo(j);
2916 virtual void OnTestStart(const TestInfo& test_info);
2918 virtual void OnTestEnd(const TestInfo& test_info);
2979 GTEST_REPEATER_METHOD_(OnTestStart, TestInfo)
2984 GTEST_REVERSE_REPEATER_METHOD_(OnTestEnd, TestInfo)
3059 // Streams an XML representation of a TestInfo object.
3062 const TestInfo& test_info);
3203 // <testcase name="test-name"> <-- corresponds to a TestInfo object
3281 // Prints an XML representation of a TestInfo object.
3285 const TestInfo& test_info) {
3946 // Returns the TestInfo object for the test that's currently running,
3948 const TestInfo* UnitTest::current_test_info() const
4450 // each TestCase and TestInfo object.
4473 TestInfo* const test_info = test_case->test_info_list()[j];
4540 const TestInfo* const test_info =