use of au.com.dius.pact.consumer.junit.exampleclients.ArticlesRestClient in project pact-jvm by DiUS.
the class ArticlesTest method testArticles.
@PactVerification("ArticlesProvider")
@Test
public void testArticles() throws IOException, NoSuchAlgorithmException, KeyStoreException, KeyManagementException {
ArticlesRestClient providerRestClient = new ArticlesRestClient();
providerRestClient.getArticles("http://localhost:1234");
}
use of au.com.dius.pact.consumer.junit.exampleclients.ArticlesRestClient in project pact-jvm by DiUS.
the class ArticlesHttpsTest method testArticles.
@PactVerification("ArticlesProvider")
@Test
public void testArticles() throws IOException, NoSuchAlgorithmException, KeyStoreException, KeyManagementException {
ArticlesRestClient providerRestClient = new ArticlesRestClient();
providerRestClient.getArticles("https://localhost:1234");
}
Aggregations