| import ScalaPactForger._ | |
| class ExampleSpec extends FunSpec with Matchers { | |
| private implicit val formats = DefaultFormats | |
| describe("Example CDC Integration tests") { | |
| it("Should be able to create a contract for a simple GET") { | |
| val endPoint = "/hello" | |
| forgePact | |
| .between("My Consumer") | |
| .and("Their Provider Service") | |
| .addInteraction( | |
| interaction | |
| .description("a simple get example") | |
| .uponReceiving(endPoint) | |
| .willRespondWith(200, "Hello there!") | |
| ) | |
| .runConsumerTest { mockConfig => |
not found: object ScalaPactForger
[error] import ScalaPactForger._
May I know under which library does ScalaPactForger lives?
Thanks.