diff --git a/src/test/java/com/fishercoder/_78Test.java b/src/test/java/com/fishercoder/_78Test.java index 6b2264c28..62c8b3f0e 100644 --- a/src/test/java/com/fishercoder/_78Test.java +++ b/src/test/java/com/fishercoder/_78Test.java @@ -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();