Spring、Spring Boot 和 TestNG 测试指南 ( 9 )

2017 年 12 月 17 日 ImportNew

(点击上方公众号,可快速关注)


来源:chanjarster ,

github.com/chanjarster/spring-test-examples


在使用Spring Boot Testing工具中提到:


在测试代码之间尽量做到配置共用。 … 能够有效利用Spring TestContext Framework的缓存机制,ApplicationContext只会创建一次,后面的测试会直接用已创建的那个,加快测试代码运行速度。


本章将列举几种共享测试配置的方法


@Configuration


我们可以将测试配置放在一个@Configuration里,然后在测试@SpringBootTest或ContextConfiguration中引用它。


PlainConfiguration:


@SpringBootApplication(scanBasePackages = "me.chanjar.shareconfig")

public class PlainConfiguration {

}


FooRepositoryIT:


@SpringBootTest(classes = PlainConfiguration.class)

public class FooRepositoryIT extends ...


@Configuration on interface


也可以把@Configuration放到一个interface上。


PlainConfiguration:


@SpringBootApplication(scanBasePackages = "me.chanjar.shareconfig")

public interface InterfaceConfiguration {

}


FooRepositoryIT:


@SpringBootTest(classes = InterfaceConfiguration.class)

public class FooRepositoryIT extends ...


Annotation


也可以利用Spring的Meta-annotations及自定义机制,提供自己的Annotation用在测试配置上。


PlainConfiguration:


@Target(ElementType.TYPE)

@Retention(RetentionPolicy.RUNTIME)

@SpringBootApplication(scanBasePackages = "me.chanjar.shareconfig")

public @interface AnnotationConfiguration {

}


FooRepositoryIT:


@SpringBootTest(classes = FooRepositoryIT.class)

@AnnotationConfiguration

public class FooRepositoryIT extends ...


参考文档


  • Meta-annotations

    https://docs.spring.io/spring/docs/4.3.9.RELEASE/spring-framework-reference/html/beans.html#beans-meta-annotations

  • Meta-Annotation Support for Testing

    https://docs.spring.io/spring/docs/4.3.9.RELEASE/spring-framework-reference/html/integration-testing.html#integration-testing-annotations-meta

  • Spring Annotation Programming Model

    https://github.com/spring-projects/spring-framework/wiki/Spring-Annotation-Programming-Model


系列



看完本文有收获?请转发分享给更多人

关注「ImportNew」,看技术干货

登录查看更多
0

相关内容

【2020新书】使用高级C# 提升你的编程技能,412页pdf
专知会员服务
57+阅读 · 2020年6月26日
干净的数据:数据清洗入门与实践,204页pdf
专知会员服务
161+阅读 · 2020年5月14日
《代码整洁之道》:5大基本要点
专知会员服务
49+阅读 · 2020年3月3日
专知会员服务
159+阅读 · 2020年1月16日
计算机视觉最佳实践、代码示例和相关文档
专知会员服务
17+阅读 · 2019年10月9日
Python 3.8.0来了!
数据派THU
5+阅读 · 2019年10月22日
VS Code Remote发布!真·远程开发
开源中国
6+阅读 · 2019年5月3日
Github项目推荐 | pikepdf - Python的PDF读写库
AI研习社
9+阅读 · 2019年3月29日
Kong 1.1 带来声明式配置与无数据库部署模式
开源中国
8+阅读 · 2019年3月28日
手把手 | 关于商业部署机器学习,这有一篇详尽指南
干货 | Python 爬虫的工具列表大全
机器学习算法与Python学习
10+阅读 · 2018年4月13日
发布TensorFlow 1.4
谷歌开发者
7+阅读 · 2017年11月23日
Factor Graph Attention
Arxiv
6+阅读 · 2019年4月11日
Zero-Shot Object Detection
Arxiv
9+阅读 · 2018年7月27日
Arxiv
19+阅读 · 2018年5月17日
VIP会员
相关资讯
Python 3.8.0来了!
数据派THU
5+阅读 · 2019年10月22日
VS Code Remote发布!真·远程开发
开源中国
6+阅读 · 2019年5月3日
Github项目推荐 | pikepdf - Python的PDF读写库
AI研习社
9+阅读 · 2019年3月29日
Kong 1.1 带来声明式配置与无数据库部署模式
开源中国
8+阅读 · 2019年3月28日
手把手 | 关于商业部署机器学习,这有一篇详尽指南
干货 | Python 爬虫的工具列表大全
机器学习算法与Python学习
10+阅读 · 2018年4月13日
发布TensorFlow 1.4
谷歌开发者
7+阅读 · 2017年11月23日
Top
微信扫码咨询专知VIP会员