springboot单元测试
程序员文章站
2022-04-26 09:17:15
...
依赖:
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>1.5.2.RELEASE</version>
<scope>test</scope>
</dependency>
demo:
/**
* @author : lichenfei
* @date : 2019年2月20日
* @time : 上午9:51:58
*
*/
package com.test;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringRunner;
import com.lcf.shiro.App;
/**
* @author : lichenfei
* @date : 2019年2月20日
* @time : 上午9:51:58
*
*/
@RunWith(SpringRunner.class)
@SpringBootTest
@ContextConfiguration(classes = App.class)//启动类
public class Demo1 {
@Test
public void test() {
System.out.println("测试");
}
}