Springboot使用junit

Posted 一沙世界

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot使用junit相关的知识,希望对你有一定的参考价值。

1. 首先要下载配套的spring-boot-starter-test包,注意版本要对应。

compile("org.springframework.boot:spring-boot-starter-web:2.0.2.RELEASE")

// Use JUnit test framework
testImplementation junit:junit:4.12
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test
testCompile group: org.springframework.boot, name: spring-boot-starter-test, version: 2.0.2.RELEASE

 

2. 示例

@RunWith(SpringRunner.class)
@SpringBootTest(classes = Springboot启动函数.class)
public class NumberServiceT {
    @Autowired
    NumberService ns;

    @Test
    public void getNumberList() {
    //    NumberService ns = new NumberService();
    ns.getUseableNumber();
    }

}

 

以上是关于Springboot使用junit的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot与单元测试JUnit的结合

SpringBoot与单元测试JUnit的结合

SpringBoot 集成JUnit

春季启动junit不工作

Springboot使用junit

(15)SpringBoot使用Junit单元测试