Fix empty input handling in FindMax (#4206)

This commit is contained in:
Piotr Idzik
2023-05-28 22:45:13 +02:00
committed by GitHub
parent 4f15149804
commit 96c1a96647
2 changed files with 37 additions and 8 deletions

View File

@ -1,16 +1,41 @@
package com.thealgorithms.maths;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertThrows;
import org.junit.jupiter.api.Test;
public class FindMaxTest {
@Test
public void testFindMaxValue() {
public void testFindMax0() {
assertEquals(
10,
FindMax.findMax(new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 })
);
}
@Test
public void testFindMax1() {
assertEquals(
7,
FindMax.findMax(new int[] { 6, 3, 5, 1, 7, 4, 1 })
);
}
@Test
public void testFindMax2() {
assertEquals(
10,
FindMax.findMax(new int[] { 10, 0 })
);
}
@Test
public void testFindMaxThrowsExceptionForEmptyInput() {
assertThrows(
IllegalArgumentException.class,
() -> FindMax.findMax(new int[]{})
);
}
}