use of com.vodafone360.people.service.SyncAdapter in project 360-Engine-for-Android by 360.
the class SyncAdapterTest method testSyncAdapter.
/***
* Test the SyncAdapter constructor.
*/
@SmallTest
@Suppress
public final void testSyncAdapter() {
SyncAdapter syncAdapter = new SyncAdapter(null, null);
assertNotNull("SyncAdapter should not be NULL", syncAdapter);
}
use of com.vodafone360.people.service.SyncAdapter in project 360-Engine-for-Android by 360.
the class SyncAdapterTest method testOnPerformSync.
/***
* Test the onPerformSync() method.
*/
@SmallTest
@Suppress
public final void testOnPerformSync() {
SyncAdapter syncAdapter = new SyncAdapter(null, null);
syncAdapter.onPerformSync(null, null, null, null, null);
assertTrue("No errors so far", true);
}
use of com.vodafone360.people.service.SyncAdapter in project 360-Engine-for-Android by 360.
the class SyncAdapterTest method testOnSyncComplete.
/***
* Test the onSyncComplete() method.
*/
@SmallTest
@Suppress
public final void testOnSyncComplete() {
SyncAdapter syncAdapter = new SyncAdapter(null, null);
syncAdapter.onSyncComplete(null);
assertTrue("No errors so far", true);
}
use of com.vodafone360.people.service.SyncAdapter in project 360-Engine-for-Android by 360.
the class SyncAdapterTest method testOnProgressEvent.
/***
* Test the onProgressEvent() method.
*/
@SmallTest
@Suppress
public final void testOnProgressEvent() {
SyncAdapter syncAdapter = new SyncAdapter(null, null);
syncAdapter.onProgressEvent(null, 0);
assertTrue("No errors so far", true);
}
use of com.vodafone360.people.service.SyncAdapter in project 360-Engine-for-Android by 360.
the class SyncAdapterTest method testOnContactSyncStateChange.
/***
* Test the onContactSyncStateChange() method.
*/
@SmallTest
@Suppress
public final void testOnContactSyncStateChange() {
SyncAdapter syncAdapter = new SyncAdapter(null, null);
syncAdapter.onContactSyncStateChange(null, null, null);
assertTrue("No errors so far", true);
}
Aggregations