| 423 | } |
| 424 | |
| 425 | TEST(TestPointerInfoDeathTest, FromEmptyJsonN) { |
| 426 | Json::Value EmptyJson = util::strToJson(R"({})"); |
| 427 | |
| 428 | ASSERT_DEATH(DummyType::createPointerInfo(EmptyJson), |
| 429 | "Unexpected Program State"); |
| 430 | } |
| 431 | |
| 432 | TEST(TestPointerInfoDeathTest, FromJsonNullValueN) { |
| 433 | ASSERT_DEATH(DummyType::createPointerInfo(Json::nullValue), |
nothing calls this directly
no test coverage detected