mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-28 06:55:02 +08:00
17 lines
425 B
Java
17 lines
425 B
Java
package com.thealgorithms.maths;
|
|
|
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
public class BinaryPowTest {
|
|
|
|
@Test
|
|
void testBinPow() {
|
|
assertEquals(4, BinaryPow.binPow(2, 2));
|
|
assertEquals(256, BinaryPow.binPow(4, 4));
|
|
assertEquals(729, BinaryPow.binPow(9, 3));
|
|
assertEquals(262144, BinaryPow.binPow(8, 6));
|
|
}
|
|
}
|