https://linen.dev logo
Title
l

Leszek Izdebski

01/25/2023, 2:43 PM
Hi, I am reading about that -> https://wiremock.org/docs/stateful-behaviour/ and I have a problem how can I get this line ->
WireMockResponse response = testClient.get("/todo/items");
I need any import of WireMockResponse or instance of this class?
a

Aaron

01/25/2023, 2:56 PM
testClient
is just a placeholder for whatever tool you are using to make network requests - the portion of that setup after the
stubFor
methods are just examples showing you how it operates.
👍 1
l

Leszek Izdebski

01/25/2023, 3:03 PM
thx