| 192 | }; |
| 193 | |
| 194 | foreach (const string& example, examples) { |
| 195 | // NOTE: We use Google's JSON utility functions for proto3. |
| 196 | TypeParam versioned; |
| 197 | ASSERT_EQ(util::Status::OK, util::JsonStringToMessage(example, &versioned)); |
| 198 | EXPECT_EQ(versioned, devolveAndEvolve(versioned)) << example; |
| 199 | } |
| 200 | } |
| 201 | |
| 202 | } // namespace tests { |
nothing calls this directly
no test coverage detected