Home
last modified time | relevance | path

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

/external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/
DAgentTest.java177 SessionInfoStore sessionStore = new SessionInfoStore(); in testGetSetSessionId() local
180 reader.setSessionInfoVisitor(sessionStore); in testGetSetSessionId()
182 assertEquals("agenttestid", sessionStore.getInfos().get(0).getId()); in testGetSetSessionId()
216 SessionInfoStore sessionStore = new SessionInfoStore(); in testGetExecutionData() local
221 reader.setSessionInfoVisitor(sessionStore); in testGetExecutionData()
225 assertEquals(1, sessionStore.getInfos().size()); in testGetExecutionData()
226 assertEquals("agenttestid", sessionStore.getInfos().get(0).getId()); in testGetExecutionData()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/tools/
DExecFileLoaderTest.java137 final SessionInfoStore sessionStore = new SessionInfoStore(); in assertFileContents() local
140 reader.setSessionInfoVisitor(sessionStore); in assertFileContents()
142 assertContents(execStore, sessionStore, expected); in assertFileContents()
146 SessionInfoStore sessionStore, String... expected) { in assertContents() argument
147 final List<SessionInfo> infos = sessionStore.getInfos(); in assertContents()