15 lines
183 B
Java
15 lines
183 B
Java
package java;
|
|
|
|
import org.junit.jupiter.api.BeforeEach;
|
|
import org.junit.jupiter.api.Assertions.*;
|
|
|
|
public class GoodCasesTest {
|
|
|
|
@BeforeEach
|
|
public void setup() {
|
|
|
|
}
|
|
|
|
|
|
}
|