use of com.vodafone360.people.tests.engine.contactsync.DummyContactSyncEngine in project 360-Engine-for-Android by 360.
the class DownloadServerContactsTest method setUp.
@Override
protected void setUp() throws Exception {
super.setUp();
mApplication = (MainApplication) Instrumentation.newApplication(MainApplication.class, getInstrumentation().getTargetContext());
mApplication.onCreate();
mDb = mApplication.getDatabase();
mDb.removeUserData();
mEngineTester = new EngineTestFramework(this);
mEng = new DummyContactSyncEngine(mEngineTester);
mProcessor = new DownloadServerContactProcessorTest(mEng, mApplication.getDatabase());
mEng.setProcessor(mProcessor);
mEngineTester.setEngine(mEng);
mState = State.IDLE;
NetworkAgent.setAgentState(NetworkAgent.AgentState.CONNECTED);
}
use of com.vodafone360.people.tests.engine.contactsync.DummyContactSyncEngine in project 360-Engine-for-Android by 360.
the class UploadServerContactsTest method setUp.
@Override
protected void setUp() throws Exception {
super.setUp();
mApplication = (MainApplication) Instrumentation.newApplication(MainApplication.class, getInstrumentation().getTargetContext());
mApplication.onCreate();
mDb = mApplication.getDatabase();
mDb.removeUserData();
mEngineTester = new EngineTestFramework(this);
mEng = new DummyContactSyncEngine(mEngineTester);
mProcessor = new UploadServerContactProcessorTest(mEng, mApplication.getDatabase());
mEng.setProcessor(mProcessor);
mEngineTester.setEngine(mEng);
mState = State.IDLE;
NetworkAgent.setAgentState(NetworkAgent.AgentState.CONNECTED);
mBulkContactTest = false;
}
use of com.vodafone360.people.tests.engine.contactsync.DummyContactSyncEngine in project 360-Engine-for-Android by 360.
the class FetchNativeContactsTest method setUp.
@Override
protected void setUp() throws Exception {
super.setUp();
mApplication = (MainApplication) Instrumentation.newApplication(MainApplication.class, getInstrumentation().getTargetContext());
mApplication.onCreate();
mDb = mApplication.getDatabase();
mDb.removeUserData();
mCr = mApplication.getContentResolver();
mEngineTester = new EngineTestFramework(this);
mEng = new DummyContactSyncEngine(mEngineTester);
mProcessor = new FetchNativeContactsProcessorTest(mEng, mApplication.getDatabase(), mApplication, mCr);
mEng.setProcessor(mProcessor);
mEngineTester.setEngine(mEng);
try {
mCr.delete(People.CONTENT_URI, null, null);
} catch (IllegalArgumentException e) {
Cursor c = mCr.query(People.CONTENT_URI, new String[] { People._ID }, null, null, null);
while (c.moveToNext()) {
Uri uri = ContentUris.withAppendedId(Contacts.People.CONTENT_URI, c.getInt(0));
mCr.delete(uri, null, null);
}
c.close();
}
}
Aggregations