| 147 | |
| 148 | template <typename T> |
| 149 | ParsedMessageValue MakeMessage(absl::string_view text) { |
| 150 | return ParsedMessageValue( |
| 151 | internal::DynamicParseTextProto<T>(GetTestArena(), text, |
| 152 | internal::GetTestingDescriptorPool(), |
| 153 | internal::GetTestingMessageFactory()), |
| 154 | GetTestArena()); |
| 155 | } |
| 156 | |
| 157 | using StringFormatTest = TestWithParam<FormattingTestCase>; |
| 158 | TEST_P(StringFormatTest, TestStringFormatting) { |
nothing calls this directly
no test coverage detected