Skip to content

Commit 2920299

Browse files
author
LUKMANul
committed
Fix(test): Resolve Checkstyle and compilation errors in QuickSelectTest
Updated imports in DeterministicQuickSelectTest.java to explicitly list JUnit methods, resolving the 'AvoidStarImport' Checkstyle rule. Also re-added the missing 'org.junit.jupiter.api.Test' import.
1 parent d47fde1 commit 2920299

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/test/java/com/thealgorithms/divideandconquer/DeterministicQuickSelectTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
package com.thealgorithms.divideandconquer;
22

3-
import static org.junit.jupiter.api.Assertions.*;
3+
import static org.junit.jupiter.api.Assertions.assertEquals; // Explicitly importing assertEquals
4+
import static org.junit.jupiter.api.Assertions.assertThrows; // Explicitly importing assertThrows
45

56
import org.junit.jupiter.api.Test;
67

8+
79
public final class DeterministicQuickSelectTest {
810

911
@Test

0 commit comments

Comments
 (0)