| 68 | } |
| 69 | |
| 70 | inline void ValueBitCount() { |
| 71 | UNIT_ASSERT_VALUES_EQUAL(GetValueBitCount(1), 1u); |
| 72 | UNIT_ASSERT_VALUES_EQUAL(GetValueBitCount(2), 2u); |
| 73 | UNIT_ASSERT_VALUES_EQUAL(GetValueBitCount(3), 2u); |
| 74 | UNIT_ASSERT_VALUES_EQUAL(GetValueBitCount(257), 9u); |
| 75 | } |
| 76 | }; |
| 77 | |
| 78 | UNIT_TEST_SUITE_REGISTRATION(TMathTest); |
nothing calls this directly
no test coverage detected