Home
last modified time | relevance | path

Searched refs:parentSession (Results 1 – 2 of 2) sorted by relevance

/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DSessionTest.java63 Session parentSession = childSession.getParentSession(); in testRecursion_printFullSessionTree() local
65 parentSession.setParentSession(childSession); in testRecursion_printFullSessionTree()
66 childSession.addChild(parentSession); in testRecursion_printFullSessionTree()
70 parentSession.printFullSessionTree(); in testRecursion_printFullSessionTree()
94 Session parentSession = childSession.getParentSession(); in testRecursion_getFullMethodPath() local
96 parentSession.setParentSession(childSession); in testRecursion_getFullMethodPath()
97 childSession.addChild(parentSession); in testRecursion_getFullMethodPath()
101 parentSession.getFullMethodPath(false /*truncatePath*/); in testRecursion_getFullMethodPath()
125 Session parentSession = childSession.getParentSession(); in testRecursion_getFullMethodPathTruncated() local
127 parentSession.setParentSession(childSession); in testRecursion_getFullMethodPathTruncated()
[all …]
DSessionManagerTest.java185 Session parentSession = mTestSessionManager.mSessionMapper.get(TEST_PARENT_THREAD_ID); in testCreateSubsession() local
188 assertEquals(TEST_PARENT_NAME, parentSession.getShortMethodName()); in testCreateSubsession()
189 assertTrue(parentSession.getChildSessions().contains(testSession)); in testCreateSubsession()
204 Session parentSession = mTestSessionManager.mSessionMapper.get(TEST_PARENT_THREAD_ID); in testCancelSubsession() local
210 assertFalse(parentSession.isSessionCompleted()); in testCancelSubsession()
225 Session parentSession = mTestSessionManager.mSessionMapper.get(TEST_PARENT_THREAD_ID); in testContinueSubsession() local
233 assertEquals(parentSession, testSession.getParentSession()); in testContinueSubsession()
234 assertFalse(parentSession.isStartedFromActiveSession()); in testContinueSubsession()
235 assertFalse(parentSession.isSessionCompleted()); in testContinueSubsession()
249 Session parentSession = mTestSessionManager.mSessionMapper.get(TEST_PARENT_THREAD_ID); in testEndSubsession() local
[all …]