use of org.forgerock.util.time.TimeService in project OpenAM by OpenRock.
the class SessionConditionTest method setUp.
@BeforeMethod
public void setUp() {
Debug debug = mock(Debug.class);
coreWrapper = mock(CoreWrapper.class);
timeService = mock(TimeService.class);
condition = new SessionCondition(debug, coreWrapper, timeService);
}
Aggregations