package org.wordpress.biowiki.models; import android.content.Context; import android.test.InstrumentationTestCase; import android.test.RenamingDelegatingContext; public class BioWikiDB_Test extends InstrumentationTestCase { protected Context testContext; protected Context targetContext; @Override protected void setUp() { // Run tests in an isolated context targetContext = new RenamingDelegatingContext(getInstrumentation().getTargetContext(), "test_"); testContext = getInstrumentation().getContext(); } }