| 3967 | } |
| 3968 | |
| 3969 | void 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 | // |
no outgoing calls
no test coverage detected