Home | History | Annotate | Download | only in gtest

Lines Matching defs:test_info

1884   TestInfo* const test_info =
1886 internal::GetUnitTestImpl()->AddTestInfo(set_up_tc, tear_down_tc, test_info);
1887 return test_info;
1930 // Returns true iff the test name of test_info matches name_.
1931 bool operator()(const TestInfo * test_info) const {
1932 return test_info && internal::String(test_info->name()).Compare(name_) == 0;
2075 void TestCase::AddTestInfo(TestInfo * test_info) {
2076 test_info_list_->PushBack(test_info);
2298 virtual void OnTestStart(const TestInfo * test_info);
2300 virtual void OnTestEnd(const TestInfo * test_info);
2344 void PrettyUnitTestResultPrinter::OnTestStart(const TestInfo * test_info) {
2346 PrintTestName(test_case_name_.c_str(), test_info->name());
2351 void PrettyUnitTestResultPrinter::OnTestEnd(const TestInfo * test_info) {
2352 if (test_info->result()->Passed()) {
2357 PrintTestName(test_case_name_.c_str(), test_info->name());
2466 virtual void OnTestStart(const TestInfo* test_info);
2467 virtual void OnTestEnd(const TestInfo* test_info);
2555 const TestInfo* test_info);
2701 const TestInfo* test_info) {
2702 const internal::TestResult * const result = test_info->result();
2707 EscapeXmlAttribute(test_info->name()).c_str(),
2708 test_info->should_run() ? "run" : "notrun",
3231 TestInfo * const test_info = test_info_node->element();
3232 const String test_name(test_info->name());
3240 test_info->impl()->set_is_disabled(is_disabled);
3245 test_info->impl()->set_should_run(should_run);
3269 const TestInfo* const test_info = test_info_node->element();
3271 printf(" %s\n", test_info->name());