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 ._21 ;
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
9
import java .util .Arrays ;
10
10
11
- import static org .junit .Assert .assertEquals ;
11
+ import static org .junit .jupiter . api . Assertions .assertEquals ;
12
12
13
13
public class _21Test {
14
14
private static _21 .Solution1 solution1 ;
15
15
private static _21 .Solution2 solution2 ;
16
16
private static ListNode l1 ;
17
17
private static ListNode l2 ;
18
18
19
- @ BeforeClass
20
- public static void setup () {
19
+ @ BeforeEach
20
+ public void setup () {
21
21
solution1 = new _21 .Solution1 ();
22
22
solution2 = new _21 .Solution2 ();
23
23
}
You can’t perform that action at this time.
0 commit comments