}
@Test
public void testSimpleChildDeployment() throws Exception {
Verticle verticle = new MyAsyncVerticle(f -> {
Context parentContext = vertx.context();
Verticle child1 = new MyAsyncVerticle(f2 -> {
Context childContext = vertx.context();
assertNotSame(parentContext, childContext);
f2.complete(null);
testComplete();
}, f2 -> f2.complete(null));
vertx.deployVerticle(child1, ar -> {