} finally {
flowManager.stop();
}
// Start Greeting procedure and query
ProcedureManager procedureManager = appManager.startProcedure("Greeting");
String response = procedureManager.getClient().query("greet", ImmutableMap.<String, String>of());
Assert.assertEquals("\"Hello 5!\"", response);
appManager.stopAll();
}