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 ._33 ;
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
- import static org .junit .Assert .assertEquals ;
7
+ import static org .junit .jupiter . api . Assertions .assertEquals ;
8
8
9
9
public class _33Test {
10
10
private static _33 .Solution1 solution1 ;
@@ -14,8 +14,8 @@ public class _33Test {
14
14
private static int expected ;
15
15
private static int target ;
16
16
17
- @ BeforeClass
18
- public static void setup () {
17
+ @ BeforeEach
18
+ public void setup () {
19
19
solution1 = new _33 .Solution1 ();
20
20
solution2 = new _33 .Solution2 ();
21
21
solution3 = new _33 .Solution3 ();
You can’t perform that action at this time.
0 commit comments