- Notifications
You must be signed in to change notification settings - Fork 19.9k
/
Copy pathMaximumSumOfNonAdjacentElementsTest.java
52 lines (41 loc) · 1.95 KB
/
MaximumSumOfNonAdjacentElementsTest.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
packagecom.thealgorithms.dynamicprogramming;
importstaticorg.junit.jupiter.api.Assertions.assertEquals;
importorg.junit.jupiter.api.Test;
publicclassMaximumSumOfNonAdjacentElementsTest {
// Tests for Approach1
@Test
publicvoidtestGetMaxSumApproach1WithEmptyArray() {
assertEquals(0, MaximumSumOfNonAdjacentElements.getMaxSumApproach1(newint[] {})); // Empty array
}
@Test
publicvoidtestGetMaxSumApproach1WithSingleElement() {
assertEquals(1, MaximumSumOfNonAdjacentElements.getMaxSumApproach1(newint[] {1})); // Single element
}
@Test
publicvoidtestGetMaxSumApproach1WithTwoElementsTakeMax() {
assertEquals(2, MaximumSumOfNonAdjacentElements.getMaxSumApproach1(newint[] {1, 2})); // Take max of both
}
@Test
publicvoidtestGetMaxSumApproach1WithMultipleElements() {
assertEquals(15, MaximumSumOfNonAdjacentElements.getMaxSumApproach1(newint[] {3, 2, 5, 10, 7})); // 3 + 7 + 5
assertEquals(10, MaximumSumOfNonAdjacentElements.getMaxSumApproach1(newint[] {5, 1, 1, 5})); // 5 + 5
}
// Tests for Approach2
@Test
publicvoidtestGetMaxSumApproach2WithEmptyArray() {
assertEquals(0, MaximumSumOfNonAdjacentElements.getMaxSumApproach2(newint[] {})); // Empty array
}
@Test
publicvoidtestGetMaxSumApproach2WithSingleElement() {
assertEquals(1, MaximumSumOfNonAdjacentElements.getMaxSumApproach2(newint[] {1})); // Single element
}
@Test
publicvoidtestGetMaxSumApproach2WithTwoElementsTakeMax() {
assertEquals(2, MaximumSumOfNonAdjacentElements.getMaxSumApproach2(newint[] {1, 2})); // Take max of both
}
@Test
publicvoidtestGetMaxSumApproach2WithMultipleElements() {
assertEquals(15, MaximumSumOfNonAdjacentElements.getMaxSumApproach2(newint[] {3, 2, 5, 10, 7})); // 3 + 7 + 5
assertEquals(10, MaximumSumOfNonAdjacentElements.getMaxSumApproach2(newint[] {5, 1, 1, 5})); // 5 + 5
}
}