| 5 | using namespace Star; |
| 6 | |
| 7 | TEST(MathTest, All) { |
| 8 | EXPECT_EQ(countSetBits<uint32_t>(7), 3u); |
| 9 | EXPECT_EQ(countSetBits<uint32_t>(15), 4u); |
| 10 | EXPECT_EQ(countSetBits<uint32_t>(-1), 32u); |
| 11 | } |
| 12 | |
| 13 | TEST(Math, CycleIncrement) { |
| 14 | int a = 0; |
nothing calls this directly
no test coverage detected