Home | History | Annotate | Download | only in nonrequiredapps

Lines Matching defs:mSnapshot

59     @Mock private SystemAppsSnapshot mSnapshot;
100 when(mSnapshot.hasSnapshot(TEST_USER_ID)).thenReturn(false);
129 verify(mSnapshot, never()).takeNewSnapshot(anyInt());
141 verify(mSnapshot).takeNewSnapshot(TEST_USER_ID);
149 when(mSnapshot.hasSnapshot(TEST_USER_ID)).thenReturn(false);
155 verify(mSnapshot, never()).takeNewSnapshot(anyInt());
163 when(mSnapshot.hasSnapshot(TEST_USER_ID)).thenReturn(true);
169 verify(mSnapshot).takeNewSnapshot(TEST_USER_ID);
183 when(mSnapshot.getSnapshot(TEST_USER_ID)).thenReturn(set);
184 when(mSnapshot.hasSnapshot(TEST_USER_ID)).thenReturn(true);
210 mSnapshot,