}
@Test
public void testAlternativeWindowContextConfig()
{
WindowContextConfig windowContextConfig = new AlternativeWindowContextConfig();
assertEquals(windowContextConfig.getMaxWindowContextCount(), 64);
assertEquals(windowContextConfig.getWindowContextTimeoutInMinutes(), 60);
assertEquals(windowContextConfig.isUrlParameterSupported(), true);
assertEquals(windowContextConfig.isUnknownWindowIdsAllowed(), false);
assertEquals(windowContextConfig.isAddWindowIdToActionUrlsEnabled(), false);
assertEquals(windowContextConfig.isCloseEmptyWindowContextsEnabled(), false);
assertEquals(windowContextConfig.isEagerWindowContextDetectionEnabled(), true);
assertEquals(windowContextConfig.isCreateWindowContextEventEnabled(), false);
assertEquals(windowContextConfig.isCloseWindowContextEventEnabled(), false);
}