SpringBoot使用Junit单元测试 继承通用类

引入pom依赖

		
			org.springframework.boot
			spring-boot-starter-test
			test
		

通用单元测试类

@RunWith(SpringRunner.class)
@SpringBootTest
//由于是Web项目,Junit需要模拟ServletContext,因此我们需要给我们的测试类加上@WebAppConfiguration。
@WebAppConfiguration
public class TmallApplicationTests {
 
    @Before
    public void init() {
        System.out.println("开始测试-----------------");
    }
 
    @After
    public void after() {
        System.out.println("测试结束-----------------");
    }
}

其他测试类继承该类即可

你可能感兴趣的:(#,常用工具类,#,springboot)