Files
pqs/pqs-system/system-boot/src/test/java/com/njcn/BaseJunitTest.java

19 lines
487 B
Java
Raw Normal View History

2022-06-21 20:47:46 +08:00
package com.njcn;
import com.njcn.system.SystemBootMain;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.context.web.WebAppConfiguration;
/**
* @author hongawen
* @version 1.0.0
* @date 2021年12月10日 15:05
*/
@RunWith(SpringRunner.class)
@WebAppConfiguration
@SpringBootTest(classes = SystemBootMain.class)
public class BaseJunitTest {
}