Skip to content

Commit

Permalink
migrate 72 to junit5
Browse files Browse the repository at this point in the history
  • Loading branch information
fishercoder1534 committed Mar 13, 2024
1 parent c61ae66 commit 3d534d9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/test/java/com/fishercoder/_72Test.java
@@ -1,18 +1,18 @@
package com.fishercoder;

import com.fishercoder.solutions._72;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

import static org.junit.Assert.assertEquals;
import static org.junit.jupiter.api.Assertions.assertEquals;

public class _72Test {
private static _72.Solution1 solution1;
private static _72.Solution2 solution2;


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

0 comments on commit 3d534d9

Please sign in to comment.