Hi All, I am starting with WireMockContainer and...
# help
y
Hi All, I am starting with WireMockContainer and have issues configuring it.
Copy code
@Container
static WireMockContainer wireMockContainer = new WireMockContainer("wiremock/wiremock:2.35.0")
        .withMappingFromResource("fortest", DemoTest.class, "mocks-config.json")
        .withFileFromResource(
                "responses",
                DemoTest.class,
                "responses.json");
mocks-config.json is located under : src/test/resources/mocks-config.json when I run the test it fails with error: resource mocks-config.json relative to com.some.foo.DemoTest not found.
l
I am not sure it will be easy to help without more information. Is there any chance you could create a small project that reproduces the issue ?