Lines Matching defs:TestInfo

1956   const TestInfo* const first_test_info = test_case->test_info_list()[0];
1961 const TestInfo* const this_test_info = impl->current_test_info();
2184 // class TestInfo
2186 // Constructs a TestInfo object. It assumes ownership of the test factory
2190 TestInfo::TestInfo(const char* a_test_case_name,
2207 // Destructs a TestInfo object.
2208 TestInfo::~TestInfo() { delete factory_; }
2212 // Creates a new TestInfo object and registers it with Google Test;
2227 // The newly created TestInfo instance will assume
2229 TestInfo* MakeAndRegisterTestInfo(
2237 TestInfo* const test_info =
2238 new TestInfo(test_case_name, name, type_param, value_param,
2267 // A predicate that checks the test name of a TestInfo against a known
2284 bool operator()(const TestInfo * test_info) const {
2312 void TestInfo::Run() {
2405 ForEach(test_info_list_, internal::Delete<TestInfo>);
2410 const TestInfo* TestCase::GetTestInfo(int i) const {
2417 TestInfo* TestCase::GetMutableTestInfo(int i) {
2424 void TestCase::AddTestInfo(TestInfo * test_info) {
2459 ForEach(test_info_list_, TestInfo::ClearTestResult);
2666 void PrintFullTestCommentIfPresent(const TestInfo& test_info) {
2699 virtual void OnTestStart(const TestInfo& test_info);
2701 virtual void OnTestEnd(const TestInfo& test_info);
2771 void PrettyUnitTestResultPrinter::OnTestStart(const TestInfo& test_info) {
2790 void PrettyUnitTestResultPrinter::OnTestEnd(const TestInfo& test_info) {
2842 const TestInfo& test_info = *test_case.GetTestInfo(j);
2914 virtual void OnTestStart(const TestInfo& test_info);
2916 virtual void OnTestEnd(const TestInfo& test_info);
2977 GTEST_REPEATER_METHOD_(OnTestStart, TestInfo)
2982 GTEST_REVERSE_REPEATER_METHOD_(OnTestEnd, TestInfo)
3048 // Streams an XML representation of a TestInfo object.
3051 const TestInfo& test_info);
3186 // <testcase name="test-name"> <-- corresponds to a TestInfo object
3222 // Prints an XML representation of a TestInfo object.
3226 const TestInfo& test_info) {
3381 void OnTestStart(const TestInfo& test_info) {
3385 void OnTestEnd(const TestInfo& test_info) {
3891 // Returns the TestInfo object for the test that's currently running,
3894 const TestInfo* UnitTest::current_test_info() const {
4372 // each TestCase and TestInfo object.
4395 TestInfo* const test_info = test_case->test_info_list()[j];
4437 const TestInfo* const test_info =