I use wiremock for bullying a web service. I use this to provide access to services for some units that we are testing. So basically we have some junit tests that use wiremock stubs.
But when we run several tests at once (say, run the entire test.java file), it will continue to wait after completion of some of the test cases. At the bottom of the log, something like the following will be shown:
[ qtp1669854350-14-selector-ServerConnectorManager@62dfb098 /0] DEBUG org.eclipse.jetty.io.SelectorManager - Selector loop waiting on select
Junit version: 4.12
Wiremock version: 2.5.0 (wiremock-standalone)
Java Version: 1.8.0_77
Also I checked this SO issue . But still I canβt understand how to overcome this.
source share