首页 > 解决方案 > 与 Spring Boot 等效的 Arquillian Persistence

问题描述

我正在将 Java EE 应用程序迁移到 Spring Boot。

集成测试使用 Arquillian Persistence 为数据库播种并最终检查结果:

@Test
@UsingDataSet({"datasets/user.yml", "datasets/person-address.yml"})
@ShouldMatchDataSet("expectations/address/person-addresses-after-insert.yml")
public void postMethodShouldCreateAddress() throws Exception {

我喜欢离开 Arquillian。Spring Boot有什么等价物吗?

标签: springspring-bootspring-data-jpajboss-arquillian

解决方案


推荐阅读