Sping-Boot 单元测试

来源:互联网 发布:电脑看片有什么软件 编辑:程序博客网 时间:2024/05/29 16:11
package com.xxx.manager.util;import java.util.List;import org.junit.Test;import org.junit.runner.RunWith;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.test.context.SpringBootTest;import org.springframework.test.context.junit4.SpringRunner;import org.springframework.test.context.web.WebAppConfiguration;//@RunWith(SpringJUnit4ClassRunner.class)@RunWith(SpringRunner.class)//@ContextConfiguration(locations = { "classpath:config/spring-resources.xml",//        "classpath:config/spring-application.xml" })@SpringBootTest(classes = Application.class)@WebAppConfiguration




<dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-test</artifactId>            <scope>test</scope></dependency>