-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathLoopFunFactorialTest.java
More file actions
58 lines (40 loc) · 973 Bytes
/
LoopFunFactorialTest.java
File metadata and controls
58 lines (40 loc) · 973 Bytes
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class LoopFunFactorialTest {
private LoopFun loop;
@Before
public void setUp() {
loop = new LoopFun();
}
@Test
public void testFactorialBase() {
//Given
int number = 1;
int expected = 1;
//When
int actual = loop.factorial(number);
//Then
assertEquals(expected, actual);
}
@Test
public void testFactorialOfSmallNumber() {
//Given
int number = 3;
int expected = 6;
//When
int actual = loop.factorial(number);
//Then
assertEquals(expected, actual);
}
@Test
public void testFactorialOfBigNumber() {
//Given
int number = 6;
int expected = 720;
//When
int actual = loop.factorial(number);
//Then
assertEquals(expected, actual);
}
}