Home | History | Annotate | Download | only in src

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 TestInfo instance will assume
2229 TestInfo* MakeAndRegisterTestInfo(
2237 TestInfo* const test_info =
2238 new TestInfo(test_case_name, name, type_param, value_param,
2283 void TestInfo::Run() {
2376 ForEach(test_info_list_, internal::Delete<TestInfo>);
2381 const TestInfo* TestCase::GetTestInfo(int i) const {
2388 TestInfo* TestCase::GetMutableTestInfo(int i) {
2395 void TestCase::AddTestInfo(TestInfo * test_info) {
2430 ForEach(test_info_list_, TestInfo::ClearTestResult);
2638 void PrintFullTestCommentIfPresent(const TestInfo& test_info) {
2671 void OnTestStart(const TestInfo &test_info) override;
2673 void OnTestEnd(const TestInfo &test_info) override;
2743 void PrettyUnitTestResultPrinter::OnTestStart(const TestInfo& test_info) {
2762 void PrettyUnitTestResultPrinter::OnTestEnd(const TestInfo& test_info) {
2814 const TestInfo& test_info = *test_case.GetTestInfo(j);
2886 void OnTestStart(const TestInfo &test_info) override;
2888 void OnTestEnd(const TestInfo &test_info) override;
2949 GTEST_REPEATER_METHOD_(OnTestStart, TestInfo)
2954 GTEST_REVERSE_REPEATER_METHOD_(OnTestEnd, TestInfo)
3020 // Streams an XML representation of a TestInfo object.
3023 const TestInfo& test_info);
3158 // <testcase name="test-name"> <-- corresponds to a TestInfo object
3194 // Prints an XML representation of a TestInfo object.
3198 const TestInfo& test_info) {
3355 void OnTestStart(const TestInfo &test_info) override {
3359 void OnTestEnd(const TestInfo &test_info) override {
3861 // Returns the TestInfo object for the test that's currently running,
3864 const TestInfo* UnitTest::current_test_info() const {
4342 // each TestCase and TestInfo object.
4365 TestInfo* const test_info = test_case->test_info_list()[j];
4407 const TestInfo* const test_info =