File tree Expand file tree Collapse file tree 1 file changed +7
-10
lines changed
src/test/java/com/fishercoder Expand file tree Collapse file tree 1 file changed +7
-10
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 ._49 ;
4
+ import org .apache .commons .collections4 .CollectionUtils ;
5
+ import org .junit .jupiter .api .BeforeEach ;
6
+ import org .junit .jupiter .api .Test ;
4
7
5
- import java .util .ArrayList ;
6
8
import java .util .Arrays ;
7
9
import java .util .List ;
8
10
9
- import org .apache .commons .collections4 .CollectionUtils ;
10
- import org .junit .BeforeClass ;
11
- import org .junit .Test ;
12
-
13
- import static junit .framework .TestCase .assertEquals ;
14
- import static junit .framework .TestCase .assertTrue ;
15
- import static org .assertj .core .api .Assertions .assertThat ;
11
+ import static org .junit .jupiter .api .Assertions .assertEquals ;
12
+ import static org .junit .jupiter .api .Assertions .assertTrue ;
16
13
17
14
public class _49Test {
18
15
private static _49 .Solution1 solution1 ;
19
16
private static String [] words ;
20
17
private static List <List <String >> expected ;
21
18
private static List <List <String >> actual ;
22
19
23
- @ BeforeClass
24
- public static void setup () {
20
+ @ BeforeEach
21
+ public void setup () {
25
22
solution1 = new _49 .Solution1 ();
26
23
}
27
24
You can’t perform that action at this time.
0 commit comments