Mercurial > stress-tester
changeset 865:3f2efeebbb6d
wiremock version changed
author | Devel 1 |
---|---|
date | Wed, 24 Jan 2018 13:05:15 +0100 |
parents | 578688902d7c |
children | 9aa23298c908 |
files | stress-tester/pom.xml stress-tester/src/test/java/com/passus/st/client/http/HttpClientTest.java |
diffstat | 2 files changed, 7 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/stress-tester/pom.xml Wed Jan 24 12:14:20 2018 +0100 +++ b/stress-tester/pom.xml Wed Jan 24 13:05:15 2018 +0100 @@ -162,7 +162,7 @@ <dependency> <groupId>com.github.tomakehurst</groupId> <artifactId>wiremock</artifactId> - <version>2.6.0</version> + <version>2.14.0</version> <scope>test</scope> </dependency> <dependency>
--- a/stress-tester/src/test/java/com/passus/st/client/http/HttpClientTest.java Wed Jan 24 12:14:20 2018 +0100 +++ b/stress-tester/src/test/java/com/passus/st/client/http/HttpClientTest.java Wed Jan 24 13:05:15 2018 +0100 @@ -1,25 +1,25 @@ package com.passus.st.client.http; -import com.passus.st.emitter.nio.NioEmitter; -import com.passus.st.emitter.RuleBasedSessionMapper; import static com.github.tomakehurst.wiremock.client.WireMock.aResponse; +import static com.github.tomakehurst.wiremock.client.WireMock.post; import static com.github.tomakehurst.wiremock.client.WireMock.stubFor; import static com.github.tomakehurst.wiremock.client.WireMock.urlEqualTo; +import com.passus.commons.service.ServiceUtils; import com.passus.st.AbstractWireMockTest; import com.passus.st.client.Event; import com.passus.st.client.SessionEvent; import com.passus.st.client.SessionStatusEvent; import com.passus.st.client.TestHttpClientListener; import com.passus.st.client.TestHttpClientListener.ResponseReceivedEvent; +import com.passus.st.emitter.RuleBasedSessionMapper; +import com.passus.st.emitter.nio.NioEmitter; import com.passus.st.utils.EventUtils; +import java.util.LinkedList; import java.util.List; import java.util.Properties; import static org.testng.AssertJUnit.*; +import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; -import static com.github.tomakehurst.wiremock.client.WireMock.post; -import com.passus.commons.service.ServiceUtils; -import java.util.LinkedList; -import org.testng.annotations.BeforeMethod; /** *