Searched defs:mockAuthSession (Results 1 - 2 of 2) sorted by relevance

/forgerock/openam/openam-core/src/test/java/com/sun/identity/authentication/service/
H A DDefaultSessionActivatorTest.java50 private InternalSession mockAuthSession; field in class:DefaultSessionActivatorTest
71 given(mockAuthSession.getPropertyNames()).willReturn(Collections.enumeration(Collections.emptyList()));
74 DefaultSessionActivator.INSTANCE.activateSession(mockState, mockSessionService, mockAuthSession, null);
83 given(mockAuthSession.getPropertyNames()).willReturn(Collections.enumeration(Collections.emptyList()));
86 DefaultSessionActivator.INSTANCE.activateSession(mockState, mockSessionService, mockAuthSession, null);
96 given(mockAuthSession.getPropertyNames()).willReturn(Collections.enumeration(sessionProperties));
97 given(mockAuthSession.getProperty("one")).willReturn("a");
98 given(mockAuthSession.getProperty("two")).willReturn("b");
99 given(mockAuthSession.getProperty("three")).willReturn("c");
102 DefaultSessionActivator.INSTANCE.activateSession(mockState, mockSessionService, mockAuthSession, nul
[all...]
/forgerock/openam-v13/openam-core/src/test/java/com/sun/identity/authentication/service/
H A DDefaultSessionActivatorTest.java49 private InternalSession mockAuthSession; field in class:DefaultSessionActivatorTest
70 given(mockAuthSession.getPropertyNames()).willReturn(Collections.enumeration(Collections.emptyList()));
73 DefaultSessionActivator.INSTANCE.activateSession(mockState, mockSessionService, mockAuthSession, null, null);
82 given(mockAuthSession.getPropertyNames()).willReturn(Collections.enumeration(Collections.emptyList()));
85 DefaultSessionActivator.INSTANCE.activateSession(mockState, mockSessionService, mockAuthSession, null, null);
95 given(mockAuthSession.getPropertyNames()).willReturn(Collections.enumeration(sessionProperties));
96 given(mockAuthSession.getProperty("one")).willReturn("a");
97 given(mockAuthSession.getProperty("two")).willReturn("b");
98 given(mockAuthSession.getProperty("three")).willReturn("c");
101 DefaultSessionActivator.INSTANCE.activateSession(mockState, mockSessionService, mockAuthSession, nul
[all...]

Completed in 28 milliseconds