| 311 | } // namespace |
| 312 | |
| 313 | TEST(EnumSet, IsEmpty1) { |
| 314 | EnumSet<TestEnum> set; |
| 315 | EXPECT_TRUE(set.empty()); |
| 316 | set.insert(TestEnum::ZERO); |
| 317 | EXPECT_FALSE(set.empty()); |
| 318 | } |
| 319 | |
| 320 | TEST(EnumSet, IsEmpty2) { |
| 321 | EnumSet<TestEnum> set; |
nothing calls this directly
no test coverage detected