Skip to content

Commit e5057de

Browse files
authored
Add tests for findMax (TheAlgorithms#3067)
1 parent bb5b50d commit e5057de

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package com.thealgorithms.maths;
2+
3+
import org.junit.jupiter.api.Test;
4+
import static org.junit.jupiter.api.Assertions.assertEquals;
5+
6+
public class FindMaxTest {
7+
8+
@Test
9+
public void testFindMaxValue(){
10+
assertEquals(10, FindMax.findMax(new int[] {1,2,3,4,5,6,7,8,9,10}));
11+
}
12+
}

0 commit comments

Comments
 (0)