File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
src/test/java/com/fishercoder Expand file tree Collapse file tree 1 file changed +5
-6
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 ._40 ;
4
+ import org .junit .jupiter .api .BeforeEach ;
5
+ import org .junit .jupiter .api .Test ;
4
6
5
7
import java .util .Arrays ;
6
8
import java .util .List ;
7
9
8
- import org .junit .BeforeClass ;
9
- import org .junit .Test ;
10
-
11
- import static org .junit .Assert .assertEquals ;
10
+ import static org .junit .jupiter .api .Assertions .assertEquals ;
12
11
13
12
public class _40Test {
14
13
private static _40 .Solution1 solution1 ;
15
14
private static int [] candidates ;
16
15
private static int target ;
17
16
private static List <List <Integer >> expected ;
18
17
19
- @ BeforeClass
20
- public static void setup () {
18
+ @ BeforeEach
19
+ public void setup () {
21
20
solution1 = new _40 .Solution1 ();
22
21
}
23
22
You can’t perform that action at this time.
0 commit comments