Skip to content

Commit

Permalink
migrate 78 to junit5
Browse files Browse the repository at this point in the history
  • Loading branch information
fishercoder1534 committed Mar 16, 2024
1 parent b7e267a commit b05f272
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/test/java/com/fishercoder/_78Test.java
Expand Up @@ -2,16 +2,16 @@

import com.fishercoder.common.utils.CommonUtils;
import com.fishercoder.solutions._78;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

public class _78Test {
private static _78.Solution1 solution1;
private static _78.Solution2 solution2;
private static _78.Solution3 solution3;

@BeforeClass
public static void setup() {
@BeforeEach
public void setup() {
solution1 = new _78.Solution1();
solution2 = new _78.Solution2();
solution3 = new _78.Solution3();
Expand Down

0 comments on commit b05f272

Please sign in to comment.