mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-27 22:43:30 +08:00
Add test case to BinaryPow Algorithm (#3177)
Co-authored-by: Yang Libin <contact@yanglibin.info>
This commit is contained in:
16
src/test/java/com/thealgorithms/maths/BinaryPowTest.java
Normal file
16
src/test/java/com/thealgorithms/maths/BinaryPowTest.java
Normal file
@ -0,0 +1,16 @@
|
||||
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));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user