source: EDIS/tags/ed/tracking-server-core/src/test/java/gov/va/med/edp/vo/SessionVOTest.java@ 1240

Last change on this file since 1240 was 1240, checked in by George Lilly, 13 years ago

new version from the VA

File size: 353 bytes
Line 
1package gov.va.med.edp.vo;
2
3import junit.framework.TestCase;
4
5public class SessionVOTest extends TestCase {
6
7 public void testGetMaxInactiveInterval() {
8 SessionVO session = new SessionVO();
9 assertEquals((SessionVO.DEFAULT_TIMEOUT_MS + SessionVO.DEFAULT_COUNTDOWN_MS) / 1000 + 60, session.getMaxInactiveInterval());
10 }
11}
Note: See TracBrowser for help on using the repository browser.