Hi, I am reading about that -&gt; <https://wiremoc...
# general
l
Hi, I am reading about that -> https://wiremock.org/docs/stateful-behaviour/ and I have a problem how can I get this line ->
Copy code
WireMockResponse response = testClient.get("/todo/items");
I need any import of WireMockResponse or instance of this class?
a
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
thx