Skip to main content
summaryrefslogtreecommitdiffstats
blob: 67b56ee7cec931d97a63ec6aef92ef6b20440970 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.eclipse.jetty.server.session;

import org.junit.Test;

public class SessionInvalidateAndCreateTest extends AbstractSessionInvalidateAndCreateTest
{

    @Override
    public AbstractTestServer createServer(int port, int max, int scavenge)
    {
        return new HashTestServer(port,max,scavenge);
    }
    
    @Test
    public void testSessionScavenge() throws Exception
    {
        super.testSessionScavenge();
    }
}

Back to the top