File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/test/java/com/fishercoder/firstthousand Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 11package com .fishercoder .firstthousand ;
22
33import com .fishercoder .solutions .firstthousand ._821 ;
4- import org .junit .BeforeClass ;
5- import org .junit .Test ;
4+ import org .junit .jupiter . api . BeforeEach ;
5+ import org .junit .jupiter . api . Test ;
66
7- import static org .junit .Assert .assertArrayEquals ;
7+ import static org .junit .jupiter . api . Assertions .assertArrayEquals ;
88
99public class _821Test {
1010 private static _821 .Solution1 solution1 ;
1111 private static _821 .Solution2 solution2 ;
1212 private static int [] expected ;
1313
14- @ BeforeClass
15- public static void setup () {
14+ @ BeforeEach
15+ public void setup () {
1616 solution1 = new _821 .Solution1 ();
1717 solution2 = new _821 .Solution2 ();
1818 }
You can’t perform that action at this time.
0 commit comments