Skip to content

Commit e02ca04

Browse files
authored
Refactor JUnit import statements in BellmanFordTest
Refactor import statements for JUnit assertions.
1 parent e38ff4e commit e02ca04

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/test/java/com/thealgorithms/graph/BellmanFordTest.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
package com.thealgorithms.graph;
22

3-
import static org.junit.jupiter.api.Assertions.*;
4-
3+
import static org.junit.jupiter.api.Assertions.assertEquals;
4+
import static org.junit.jupiter.api.Assertions.assertTrue;
5+
import static org.junit.jupiter.api.Assertions.assertFalse;
6+
import static org.junit.jupiter.api.Assertions.assertThrows;
7+
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
58
import org.junit.jupiter.api.Test;
69
import java.util.ArrayList;
710
import java.util.Arrays;

0 commit comments

Comments
 (0)