use of wiremock.org.apache.http.HttpException in project concord-plugins by walmartlabs.
the class ApiExceptionTest method testThrowable.
@Test
public void testThrowable() {
ApiException ex = new ApiException(new HttpException("http error"));
assertTrue(ex.getMessage().contains("http error"));
}
Aggregations