RequestConstants.ASSET_PATH_PREFIX + "/org/apache/tapestry/default.css"))
.andReturn("/org/apache/tapestry/default.css");
replay(auth,request,response,manager,logger);
AssetProtectionDispatcher disp = new AssetProtectionDispatcher(auths,manager,logger);
assertTrue(disp.dispatch(request,response));
assertFalse(disp.dispatch(request, response));
verify(auth,request,response,logger);
}
}