forked from TheAlgorithms/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFactorialRecursionTest.java
28 lines (23 loc) · 1010 Bytes
/
FactorialRecursionTest.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.thealgorithms.maths;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertThrows;
import java.util.stream.Stream;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.MethodSource;
public class FactorialRecursionTest {
@ParameterizedTest
@MethodSource("inputStream")
void testFactorialRecursion(long expected, int number) {
assertEquals(expected, FactorialRecursion.factorial(number));
}
private static Stream<Arguments> inputStream() {
return Stream.of(Arguments.of(1, 0), Arguments.of(1, 1), Arguments.of(2, 2), Arguments.of(6, 3), Arguments.of(120, 5));
}
@Test
void testNegativeNumber() {
Exception exception = assertThrows(IllegalArgumentException.class, () -> FactorialRecursion.factorial(-1));
}
}