-
Notifications
You must be signed in to change notification settings - Fork 19.5k
/
CountFriendsPairingTest.java
50 lines (37 loc) · 1.33 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
package com.thealgorithms.dynamicprogramming;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api.Test;
public class CountFriendsPairingTest {
@Test
void testSmallCase() {
int n = 5;
int[] expectedGolombSequence = {1, 2, 2, 3, 3};
assertTrue(CountFriendsPairing.countFriendsPairing(n, expectedGolombSequence));
}
@Test
void testMismatchSequence() {
int n = 5;
int[] wrongSequence = {1, 2, 2, 2, 3}; // An incorrect sequence
assertFalse(CountFriendsPairing.countFriendsPairing(n, wrongSequence));
}
@Test
void testLargerCase() {
int n = 10;
int[] expectedGolombSequence = {1, 2, 2, 3, 3, 4, 4, 4, 5, 5};
assertTrue(CountFriendsPairing.countFriendsPairing(n, expectedGolombSequence));
}
@Test
void testEdgeCaseSingleElement() {
int n = 1;
int[] expectedGolombSequence = {1};
assertTrue(CountFriendsPairing.countFriendsPairing(n, expectedGolombSequence));
}
@Test
void testEmptySequence() {
int n = 0;
int[] emptySequence = {};
// Test the case where n is 0 (should handle this gracefully)
assertTrue(CountFriendsPairing.countFriendsPairing(n, emptySequence));
}
}