mirror of
https://github.com/slhaf/Partner.git
synced 2026-05-12 16:53:04 +08:00
10 lines
168 B
Java
10 lines
168 B
Java
import org.junit.jupiter.api.Test;
|
|
|
|
public class TestImpl implements InterfaceTest {
|
|
|
|
@Test
|
|
public void test() {
|
|
System.out.println(getName());
|
|
}
|
|
}
|