MuleClient client = new MuleClient(muleContext);
MuleMessage result = client.send("http://localhost:" + getPorts().get(0) + "/services/oneway",
prepareOneWayTestMessage(), prepareOneWayTestProperties());
assertEquals("", result.getPayloadAsString());
AsyncService component = (AsyncService) getComponent("asyncService");
assertTrue(component.getLatch().await(10000, TimeUnit.MILLISECONDS));
}