mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-28 23:15:17 +08:00
Add tests for power using recursion algorithm (#4335)
This commit is contained in:

committed by
GitHub

parent
ebd356e182
commit
80a4435038
@ -0,0 +1,20 @@
|
||||
package com.thealgorithms.maths;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
/**
|
||||
* Test case for Power using Recursion
|
||||
* @author Bama Charan Chhandogi (https://github.com/BamaCharanChhandogi)
|
||||
*/
|
||||
|
||||
class PowerUsingRecursionTest {
|
||||
|
||||
@Test
|
||||
void testPowerUsingRecursion() {
|
||||
assertEquals(32.0, PowerUsingRecursion.power(2.0, 5));
|
||||
assertEquals(97.65625, PowerUsingRecursion.power(2.5, 5));
|
||||
assertEquals(81, PowerUsingRecursion.power(3, 4));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user