mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-25 21:44:07 +08:00
18 lines
457 B
Java
18 lines
457 B
Java
package com.thealgorithms.bitmanipulation;
|
|
|
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
public class CountSetBitsTest {
|
|
|
|
@Test
|
|
void testSetBits() {
|
|
CountSetBits csb = new CountSetBits();
|
|
assertEquals(1L, csb.countSetBits(16));
|
|
assertEquals(4, csb.countSetBits(15));
|
|
assertEquals(5, csb.countSetBits(10000));
|
|
assertEquals(5, csb.countSetBits(31));
|
|
}
|
|
}
|