MCPcopy Create free account
hub / github.com/BVLC/caffe / PrintFullTestCommentIfPresent

Function PrintFullTestCommentIfPresent

src/gtest/gtest-all.cpp:3969–3984  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3967}
3968
3969void PrintFullTestCommentIfPresent(const TestInfo& test_info) {
3970 const char* const type_param = test_info.type_param();
3971 const char* const value_param = test_info.value_param();
3972
3973 if (type_param != NULL || value_param != NULL) {
3974 printf(", where ");
3975 if (type_param != NULL) {
3976 printf("TypeParam = %s", type_param);
3977 if (value_param != NULL)
3978 printf(" and ");
3979 }
3980 if (value_param != NULL) {
3981 printf("GetParam() = %s", value_param);
3982 }
3983 }
3984}
3985
3986// This class implements the TestEventListener interface.
3987//

Callers 2

OnTestEndMethod · 0.85
PrintFailedTestsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected