File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/test/java/com/fishercoder Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 3
3
import com .fishercoder .common .classes .ListNode ;
4
4
import com .fishercoder .common .utils .LinkedListUtils ;
5
5
import com .fishercoder .solutions ._19 ;
6
- import org .junit .BeforeClass ;
7
- import org .junit .Test ;
6
+ import org .junit .jupiter . api . BeforeEach ;
7
+ import org .junit .jupiter . api . Test ;
8
8
9
- import static org .junit .Assert .assertEquals ;
9
+ import static org .junit .jupiter . api . Assertions .assertEquals ;
10
10
11
11
public class _19Test {
12
12
private static _19 .Solution1 solution1 ;
13
13
private static _19 .Solution3 solution3 ;
14
14
private static ListNode head ;
15
15
private static ListNode expected ;
16
16
17
- @ BeforeClass
18
- public static void setup () {
17
+ @ BeforeEach
18
+ public void setup () {
19
19
solution1 = new _19 .Solution1 ();
20
20
solution3 = new _19 .Solution3 ();
21
21
}
You can’t perform that action at this time.
0 commit comments