// @Test
public void testDispatchStatic() throws Exception
{
log.info("starting testFilter()");
ResteasyClient client = new ResteasyClientBuilder().build();
Invocation.Builder request = client.target("http://localhost:8080/RESTEASY-903/test/dispatch/static").request();
Response response = request.get();
log.info("Status: " + response.getStatus());
log.info("result: " + response.readEntity(String.class));
assertEquals(200, response.getStatus());