- Notifications
You must be signed in to change notification settings - Fork 19.9k
/
Copy pathCountFriendsPairingTest.java
57 lines (46 loc) · 1.45 KB
/
CountFriendsPairingTest.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
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
packagecom.thealgorithms.others;
importstaticorg.junit.jupiter.api.Assertions.assertTrue;
importcom.thealgorithms.dynamicprogramming.CountFriendsPairing;
importorg.junit.jupiter.api.Test;
publicclassCountFriendsPairingTest {
@Test
voidtestForOneElement() {
int[] a = {1, 2, 2};
assertTrue(CountFriendsPairing.countFriendsPairing(3, a));
}
@Test
voidtestForTwoElements() {
int[] a = {1, 2, 2, 3};
assertTrue(CountFriendsPairing.countFriendsPairing(4, a));
}
@Test
voidtestForThreeElements() {
int[] a = {1, 2, 2, 3, 3};
assertTrue(CountFriendsPairing.countFriendsPairing(5, a));
}
@Test
voidtestForFourElements() {
int[] a = {1, 2, 2, 3, 3, 4};
assertTrue(CountFriendsPairing.countFriendsPairing(6, a));
}
@Test
voidtestForFiveElements() {
int[] a = {1, 2, 2, 3, 3, 4, 4};
assertTrue(CountFriendsPairing.countFriendsPairing(7, a));
}
@Test
voidtestForSixElements() {
int[] a = {1, 2, 2, 3, 3, 4, 4, 4};
assertTrue(CountFriendsPairing.countFriendsPairing(8, a));
}
@Test
voidtestForSevenElements() {
int[] a = {1, 2, 2, 3, 3, 4, 4, 4, 5};
assertTrue(CountFriendsPairing.countFriendsPairing(9, a));
}
@Test
voidtestForEightElements() {
int[] a = {1, 2, 2, 3, 3, 4, 4, 4, 5, 5};
assertTrue(CountFriendsPairing.countFriendsPairing(10, a));
}
}