@Test
public void testOnErrorWithFiltersSuccessfulyHandlingAppEx() throws Exception
{
Exception exFromApp = new RuntimeException("Runtime exception from app");
ErrorResponse appErrorResponse = new ErrorResponse().setStatus(404);
RequestExecutionReport executionReport = new RequestExecutionReportBuilder().build();
final Map<String, String> headersFromApp = Maps.newHashMap();
headersFromApp.put("Key", "Input");
final RecordTemplate entityFromFilter = Foo.createFoo("Key", "Two");
final Map<String, String> headersFromFilter = Maps.newHashMap();
headersFromFilter.put("Key", "Output");