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 1
1
package com .fishercoder ;
2
2
3
3
import com .fishercoder .solutions ._15 ;
4
- import org .junit .BeforeClass ;
5
- import org .junit .Test ;
4
+ import org .junit .jupiter . api . BeforeEach ;
5
+ import org .junit .jupiter . api . Test ;
6
6
7
7
import java .util .ArrayList ;
8
8
import java .util .Arrays ;
9
9
import java .util .List ;
10
10
11
- import static org .junit .Assert .assertEquals ;
11
+ import static org .junit .jupiter . api . Assertions .assertEquals ;
12
12
13
13
public class _15Test {
14
14
private static _15 .Solution1 solution1 ;
15
15
private static int [] nums ;
16
16
private static List <List <Integer >> expected ;
17
17
18
- @ BeforeClass
19
- public static void setup () {
18
+ @ BeforeEach
19
+ public void setup () {
20
20
solution1 = new _15 .Solution1 ();
21
21
}
22
22
You can’t perform that action at this time.
0 commit comments