NoIssue: Fix description

This commit is contained in:
Minimons
2025-12-03 09:52:50 +01:00
parent 959bd7dd66
commit 254a55d955

View File

@@ -11,9 +11,9 @@ import static org.junit.jupiter.api.Assertions.assertThrows;
@DisplayName("Sad Random Ints Tests")
public class IncorrectRandomIntsTests {
@DisplayName("RandomInts.getSomeInts()")
@DisplayName("Do incorrect range bounds throw?")
@Test
void testThatMinBoundIsGreaterThanMaxBoundThrows() {
void testThatItThrowsWhenMinBoundIsGreaterThanMaxBound() {
// Arrange
int minBound = 10;
int maxBound = 5;