use of com.vodafone360.people.MainApplication 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();
}
}
use of com.vodafone360.people.MainApplication in project 360-Engine-for-Android by 360.
the class SyncMeEngineTest method setUp.
@Override
protected void setUp() throws Exception {
super.setUp();
// delete the database
getInstrumentation().getTargetContext().deleteDatabase(HelperClasses.getDatabaseName());
// create an application instance
mApplication = (MainApplication) Instrumentation.newApplication(MainApplication.class, getInstrumentation().getTargetContext());
mApplication.onCreate();
mEngineTester = new EngineTestFramework(this);
mEngine = new SyncMeEngine(getInstrumentation().getTargetContext(), mEngineTester, mApplication.getDatabase());
mEngineTester.setEngine(mEngine);
Log.i(LOG_TAG, "**** setUp() end ****");
}
use of com.vodafone360.people.MainApplication in project 360-Engine-for-Android by 360.
the class ActivitiesEngineTest method setUp.
@Override
protected void setUp() throws Exception {
super.setUp();
mApplication = (MainApplication) Instrumentation.newApplication(MainApplication.class, getInstrumentation().getTargetContext());
mApplication.onCreate();
// EngineManager.createEngineManager(getInstrumentation().getTargetContext(),
// null);
mEngineTester = new EngineTestFramework(this);
mEng = new ActivitiesEngine(getInstrumentation().getTargetContext(), mEngineTester, mApplication.getDatabase());
mEngineTester.setEngine(mEng);
mState = ActivityTestState.IDLE;
}
use of com.vodafone360.people.MainApplication in project 360-Engine-for-Android by 360.
the class IdentityEngineTest method setUp.
@Override
protected void setUp() throws Exception {
super.setUp();
mApplication = (MainApplication) Instrumentation.newApplication(MainApplication.class, getInstrumentation().getTargetContext());
mApplication.onCreate();
mEngineTester = new EngineTestFramework(this);
mEng = new IdentityEngine(mEngineTester, mApplication.getDatabase());
mEngineTester.setEngine(mEng);
mState = IdentityTestState.IDLE;
}
Aggregations