springboot 1.5.X junit测试

Posted 书山有路勤为径,学海无涯苦作舟(肖建锋)

tags:

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

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;

@RunWith(SpringRunner.class)
@SpringBootTest(classes = Application.class)
public class Test {
    @org.junit.Test
    public void test() {
    }
}

 

以上是关于springboot 1.5.X junit测试的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot2---单元测试(Junit5)

springboot Junit 测试

(15)SpringBoot使用Junit单元测试

SpringBoot:以最少的配置运行 Junit 单元测试

springboot集成junit测试与javamail测试遇到的问题

SpringBoot 在运行 Junit 测试时禁用 DataSourceAutoconfigure 错误