use of org.odk.collect.android.formmanagement.matchexactly.SyncStatusAppState in project collect by opendatakit.
the class SyncStatusAppStateTest method finishSync_updatesFormsContentObserver.
@Test
public void finishSync_updatesFormsContentObserver() {
SyncStatusAppState syncStatusAppState = new SyncStatusAppState(context);
syncStatusAppState.startSync("projectId");
syncStatusAppState.finishSync("projectId", null);
verify(contentResolver).notifyChange(FormsContract.getUri("projectId"), null);
}
Aggregations