waitUntil(() -> TestVerticle.instanceCount.get() == instances);
assertTrue(t.isAlive()); // It's blocked
List<String> processArgs = TestVerticle.processArgs;
assertEquals(Arrays.asList(args), TestVerticle.processArgs);
// Now unblock it
starter.unblock();
waitUntil(() -> !t.isAlive());
}
@Test
public void testRunVerticleClustered() throws Exception {