File tree 1 file changed +5
-5
lines changed
src/test/java/com/fishercoder
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
import com .fishercoder .common .utils .CommonUtils ;
4
4
import com .fishercoder .solutions ._79 ;
5
- import org .junit .BeforeClass ;
6
- import org .junit .Test ;
5
+ import org .junit .jupiter . api . BeforeEach ;
6
+ import org .junit .jupiter . api . Test ;
7
7
8
- import static junit .framework . TestCase .assertEquals ;
8
+ import static org . junit .jupiter . api . Assertions .assertEquals ;
9
9
10
10
public class _79Test {
11
11
private static _79 .Solution1 solution1 ;
12
12
private static _79 .Solution2 solution2 ;
13
13
private static _79 .Solution3 solution3 ;
14
14
private static char [][] board ;
15
15
16
- @ BeforeClass
17
- public static void setup () {
16
+ @ BeforeEach
17
+ public void setup () {
18
18
solution1 = new _79 .Solution1 ();
19
19
solution2 = new _79 .Solution2 ();
20
20
solution3 = new _79 .Solution3 ();
You can’t perform that action at this time.
0 commit comments