assertNotNull(sessionScope);
}
public void testIsLongLivingPages() {
HDIVConfig hdivConfig = this.context.getBean(HDIVConfig.class);
assertNotNull(hdivConfig);
String result = hdivConfig.isLongLivingPages("/default.html");
assertEquals("user-session", result);
result = hdivConfig.isLongLivingPages("/user.html");
assertEquals("user-session", result);
result = hdivConfig.isLongLivingPages("/app.html");
assertEquals("app", result);
result = hdivConfig.isLongLivingPages("/other.html");
assertNull(result);
}