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测试的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot:以最少的配置运行 Junit 单元测试