Searched refs:runExport (Results 1 – 4 of 4) sorted by relevance
111 assertThat(mExportManager.runExport()).isTrue(); in runExport_deletesAccessLogsTableContent()130 assertThat(mExportManager.runExport()).isTrue(); in runExport_deletesChangeLogsTableContent()148 assertThat(mExportManager.runExport()).isTrue(); in runExport_deletesLocalCopies()164 assertThat(mExportManager.runExport()).isTrue(); in runExport_makesRemoteCopyOfDatabase()187 assertThat(mExportManager.runExport()).isFalse(); in runExport_destinationUriDoesNotExist_exportFails()200 assertThat(mExportManager.runExport()).isTrue(); in runExport_updatesLastSuccessfulExport_onSuccessOnly()210 assertThat(mExportManager.runExport()).isFalse(); in runExport_updatesLastSuccessfulExport_onSuccessOnly()
98 verify(mExportManager, times(0)).runExport(); in executePeriodicExportJob_withPeriodZero_doesNotRunExport()118 verify(mExportManager, times(1)).runExport(); in executePeriodicExportJob_withPeriodGreaterThanZero_runsExport()125 when(mExportManager.runExport()).thenReturn(true); in executePeriodicExportJob_successfulExport_returnsTrue()136 when(mExportManager.runExport()).thenReturn(false); in executePeriodicExportJob_failedExport_returnsFalse()
87 return exportManager.runExport(); in executePeriodicExportJob()
88 public synchronized boolean runExport() { in runExport() method in ExportManager