mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-15 01:40:49 +08:00
14 lines
284 B
Java
14 lines
284 B
Java
package com.thealgorithms.bitmanipulation;
|
|
|
|
import static org.junit.jupiter.api.Assertions.*;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
class SetBitTest {
|
|
@Test
|
|
void testSetBit() {
|
|
assertEquals(5, SetBit.setBit(4, 0));
|
|
assertEquals(3, SetBit.setBit(3, 1));
|
|
}
|
|
}
|