Skip to content

Commit 2c96268

Browse files
author
Rahul Maganti
committed
ntt_manager: add fuzz test for countSetBits
1 parent 42fe1a4 commit 2c96268

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

evm/test/NttManager.t.sol

+14-6
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,20 @@ contract TestNttManager is Test, IRateLimiterEvents {
7272

7373
// === pure unit tests
7474

75-
function test_countSetBits() public {
76-
assertEq(countSetBits(5), 2);
77-
assertEq(countSetBits(0), 0);
78-
assertEq(countSetBits(15), 4);
79-
assertEq(countSetBits(16), 1);
80-
assertEq(countSetBits(65535), 16);
75+
// naive implementation of countSetBits to test against
76+
function simpleCount(uint64 n) public returns (uint8) {
77+
uint8 count;
78+
79+
while (n > 0) {
80+
count += uint8(n & 1);
81+
n >>= 1;
82+
}
83+
84+
return count;
85+
}
86+
87+
function testFuzz_countSetBits(uint64 n) public {
88+
assertEq(simpleCount(n), countSetBits(n));
8189
}
8290

8391
// === Deployments with rate limiter disabled

0 commit comments

Comments
 (0)