We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9745401 commit da5e35aCopy full SHA for da5e35a
src/test/java/com/thealgorithms/maths/GCDRecursionTest.java
@@ -1,10 +1,12 @@
1
package com.thealgorithms.maths;
2
3
+import static org.junit.jupiter.api.Assertions.assertEquals;
4
+import static org.junit.jupiter.api.Assertions.assertThrows;
5
+
6
import org.junit.jupiter.api.Test;
7
import org.junit.jupiter.params.ParameterizedTest;
8
import org.junit.jupiter.params.provider.CsvSource;
9
import org.junit.jupiter.params.provider.ValueSource;
-import static org.junit.jupiter.api.Assertions.*;
10
11
public class GCDRecursionTest {
12
0 commit comments