Home | History | Annotate | Download | only in src

Lines Matching defs:comment

2099                    const char* comment,
2103 test_case_comment, comment,
2121 // test_case_comment: a comment on the test case that will be included in
2123 // comment: a comment on the test that will be included in the
2133 const char* test_case_comment, const char* comment,
2139 new TestInfo(test_case_name, name, test_case_comment, comment,
2176 // Returns the test case comment.
2181 // Returns the test comment.
2182 const char* TestInfo::comment() const {
2183 return impl_->comment();
2341 TestCase::TestCase(const char* name, const char* comment,
2345 comment_(comment),
2710 if (test_case.comment()[0] == '\0') {
2713 printf(", where %s\n", test_case.comment());
2721 if (test_info.comment()[0] == '\0') {
2724 printf(", where %s\n", test_info.comment());
2796 if (test_case.comment()[0] != '\0' ||
2797 test_info.comment()[0] != '\0') {
2798 printf(", where %s", test_case.comment());
2799 if (test_case.comment()[0] != '\0' &&
2800 test_info.comment()[0] != '\0') {
2804 printf("%s\n", test_info.comment());
3861 const char* comment,
3872 new TestCase(test_case_name, comment, set_up_tc, tear_down_tc);
4272 const char* comment,
4279 comment_(String(comment)),