Spring Cloud Contract 契约测试

一、简介

Spring Cloud Contract就是基于消费者驱动契约(Consumer-driven contracts,简称CDC)的测试工具。消费者驱动契约,是指从消费者业务实现的角度出发,驱动出契约,再基于契约,对提供者验证的一种测试方式。 

二、准备工作

1、springboot 项目加入相关依赖

<dependency>

   <groupId>org.springframework.cloud</groupId>

   <artifactId>spring-cloud-starter-contract-stub-runner</artifactId>

   <scope>test</scope>

</dependency>

<dependency>

   <groupId>org.springframework.cloud</groupId>

   <artifactId>spring-cloud-starter-contract-verifier</artifactId>

猜你喜欢

转载自blog.csdn.net/as4589sd/article/details/103699568