Home | History | Annotate | Download | only in src

Lines Matching defs:test_info

2133   TestInfo* const test_info =
2136 GetUnitTestImpl()->AddTestInfo(set_up_tc, tear_down_tc, test_info);
2137 return test_info;
2211 // Returns true iff the test name of test_info matches name_.
2212 bool operator()(const TestInfo * test_info) const {
2213 return test_info && internal::String(test_info->name()).Compare(name_) == 0;
2369 void TestCase::AddTestInfo(TestInfo * test_info) {
2370 test_info_list_->PushBack(test_info);
2609 virtual void OnTestStart(const TestInfo * test_info);
2611 virtual void OnTestEnd(const TestInfo * test_info);
2681 void PrettyUnitTestResultPrinter::OnTestStart(const TestInfo * test_info) {
2683 PrintTestName(test_case_name_.c_str(), test_info->name());
2684 if (test_info->comment()[0] == '\0') {
2687 printf(", where %s\n", test_info->comment());
2692 void PrettyUnitTestResultPrinter::OnTestEnd(const TestInfo * test_info) {
2693 if (test_info->result()->Passed()) {
2698 PrintTestName(test_case_name_.c_str(), test_info->name());
2701 test_info->result()->elapsed_time()).c_str());
2826 virtual void OnTestStart(const TestInfo* test_info);
2827 virtual void OnTestEnd(const TestInfo* test_info);
2915 const TestInfo* test_info);
3076 const TestInfo* test_info) {
3077 const internal::TestResult * const result = test_info->result();
3082 EscapeXmlAttribute(test_info->name()).c_str(),
3083 test_info->should_run() ? "run" : "notrun",
3827 TestInfo * const test_info = test_info_node->element();
3828 const String test_name(test_info->name());
3836 test_info->impl()->set_is_disabled(is_disabled);
3851 test_info->impl()->set_should_run(is_selected);
3872 const TestInfo* const test_info = test_info_node->element();
3874 printf(" %s\n", test_info->name());