Add MockExchangeFunction getResponse

This allows setting up the mock

Issue: gh-5386
This commit is contained in:
Rob Winch 2018-07-02 10:00:40 -05:00
parent 0910e04bdf
commit 1f1fb1a801
1 changed files with 3 additions and 0 deletions

View File

@ -43,6 +43,9 @@ public class MockExchangeFunction implements ExchangeFunction {
public List<ClientRequest> getRequests() {
return this.requests;
}
public ClientResponse getResponse() {
return this.response;
}
@Override