use of com.thoughtworks.go.server.newsecurity.filters.ApiSessionReduceIdleTimeoutFilter in project gocd by gocd.
the class CreateSessionFilterChainTest method setUp.
@BeforeEach
void setUp() throws Exception {
response = new MockHttpServletResponse();
request = new MockHttpServletRequest();
apiSessionReduceIdleTimeoutFilter = spy(new ApiSessionReduceIdleTimeoutFilter(new SystemEnvironment()));
agentSessionReduceIdleTimeoutFilter = spy(new AgentSessionReduceIdleTimeoutFilter(new SystemEnvironment()));
alwaysCreateSessionFilter = spy(new AlwaysCreateSessionFilter());
}
Aggregations