Skip to content

Commit

Permalink
migrate 81 to junit5
Browse files Browse the repository at this point in the history
  • Loading branch information
fishercoder1534 committed Mar 24, 2024
1 parent 941cf26 commit 195a870
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/test/java/com/fishercoder/_81Test.java
@@ -1,16 +1,16 @@
package com.fishercoder;

import com.fishercoder.solutions._81;
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 _81Test {
private static _81.Solution1 solution1;

@BeforeClass
public static void setup() {
@BeforeEach
public void setup() {
solution1 = new _81.Solution1();
}

Expand Down

0 comments on commit 195a870

Please sign in to comment.