| 284 | }; |
| 285 | |
| 286 | TEST_F(TestJsonFormat, Equals) { |
| 287 | JsonFileFormat format; |
| 288 | ASSERT_TRUE(format.Equals(JsonFileFormat())); |
| 289 | ASSERT_FALSE(format.Equals(DummyFileFormat())); |
| 290 | } |
| 291 | |
| 292 | // Common tests for old API |
| 293 | TEST_F(TestJsonFormat, IsSupported) { TestIsSupported(); } |
nothing calls this directly
no test coverage detected