| 72 | } |
| 73 | |
| 74 | TEST(AnyTest, EmptyAny) |
| 75 | { |
| 76 | Any anyEmpty; |
| 77 | EXPECT_THROW(anyEmpty.ToString(), std::logic_error); |
| 78 | EXPECT_NO_THROW(anyEmpty.ToStringNoExcept()); |
| 79 | } |
| 80 | |
| 81 | TEST(AnyTest, AnyBool) |
| 82 | { |
nothing calls this directly
no test coverage detected