mirror of
https://github.com/201206030/novel.git
synced 2025-04-27 07:30:50 +00:00
17 lines
340 B
Java
17 lines
340 B
Java
package xyz.zinglizingli.common;
|
|
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
import org.springframework.test.context.junit4.SpringRunner;
|
|
|
|
@RunWith(SpringRunner.class)
|
|
@SpringBootTest
|
|
public class SearchApplicationTests {
|
|
|
|
@Test
|
|
public void contextLoads() {
|
|
}
|
|
|
|
}
|