Home
last modified time | relevance | path

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

/packages/providers/CallLogProvider/tests/src/com/android/calllogbackup/
DCallLogBackupAgentTest.java35 import com.android.calllogbackup.CallLogBackupAgent.Call;
36 import com.android.calllogbackup.CallLogBackupAgent.CallLogBackupState;
77 private CallLogBackupAgent.BackupRestoreEventLoggerProxy mBackupRestoreEventLoggerProxy =
78 new CallLogBackupAgent.BackupRestoreEventLoggerProxy() {
100 CallLogBackupAgent mCallLogBackupAgent;
114 mCallLogBackupAgent = new CallLogBackupAgent(); in setUp()
133 assertEquals(state.version, CallLogBackupAgent.VERSION_NO_PREVIOUS_STATE); in testReadState_NoCall()
212 state.version = CallLogBackupAgent.VERSION; in testWriteState_NoCalls()
218 inOrder.verify(mDataOutput).writeInt(CallLogBackupAgent.VERSION); in testWriteState_NoCalls()
224 state.version = CallLogBackupAgent.VERSION; in testWriteState_OneCall()
[all …]
/packages/providers/CallLogProvider/src/com/android/calllogbackup/
DCallLogBackupAgent.java60 public class CallLogBackupAgent extends BackupAgent { class