Made test less brittle

This commit is contained in:
Marcin Grzejszczak
2018-12-17 13:49:06 +01:00
parent 4ca8091494
commit f45f624d34
2 changed files with 7 additions and 0 deletions

View File

@@ -17,6 +17,11 @@
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock-standalone</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>

View File

@@ -11,6 +11,7 @@ import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.http.MediaType;
import org.springframework.http.RequestEntity;
import org.springframework.http.client.HttpComponentsClientHttpRequestFactory;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@@ -58,6 +59,7 @@ class Service {
public Service(RestTemplate restTemplate) {
this.restTemplate = restTemplate;
this.restTemplate.setRequestFactory(new HttpComponentsClientHttpRequestFactory());
}
public String go() {