Hello there! When I use PactVerifier, my provider...
# pact-net
a
Hello there! When I use PactVerifier, my provider checks all consumers that it has the latest published contract. However, is possible to set this verification only to one specific consumer instead verify all consumers? Is there any parameter, field? In some cases, I just would like to check the verification for one consumer. My code:
Copy code
IPactVerifier verifier = new PactVerifier(config);

                verifier.ServiceProvider("test-provider", this.fixture.ServerUri)
                        .WithPactBrokerSource(new Uri("<https://test-broker/>"), options =>
                        {
                        options.ConsumerVersionSelectors(new ConsumerVersionSelector { Latest = true })
                               .PublishResults(version);
                        })
                        .WithProviderStateUrl(new Uri(this.fixture.ServerUri, "/provider-states"))
                        .Verify();