I\'m new to Android testing and I\'m trying to create an ApplicationTestCase using a MockContext (well actually I\'m trying to use a Renaming Mock Context). But I keep getti
As a workaround for that book sample, check the android developer guide to ApplicationTestCase: "If simply run your tests as-is, your Application will be injected with a fully-functional Context" (http://developer.android.com/reference/android/test/ApplicationTestCase.html).
A few lines of the Setup method must be commented to get the test working:
protected void setUp() throws Exception
{
super.setUp();
// final RenamingMockContext mockContext = new RenamingMockContext(
// getContext());
// setContext(mockContext);
createApplication();
mApplication = getApplication();
}