public class SessionLocatorTest extends TestCase {
MemcachedSessionLocator sessionLocator;
public void testArraySessionLocator() {
sessionLocator = new ArrayMemcachedSessionLocator();
List<Session> sessions = new ArrayList<Session>();
for (int i = 8080; i < 8100; i++) {
sessions.add(new MockSession(i));
}