assertFalse(filter.isDestroyed());
request.setServletPath("/a/path/which/doesnt/match/any/filter.html");
filterChainProxy.doFilter(request, response, new MockFilterChain());
filter.destroy();
assertTrue(filter.isInitialized());
assertTrue(filter.isDoFiltered());
assertTrue(filter.isDestroyed());
}
}