This earlier post describes how to fix content provider tests. Another way to fix them is to make setUp() method public and annotate it with @Before attribute:
@Before
@Override
public void setUp() throws Exception {
setContext(InstrumentationRegistry.getTargetContext());
super.setUp();
}
Note that the method should be implemented as described Testing Your Content Provider.
@Before
@Override
public void setUp() throws Exception {
setContext(InstrumentationRegistry.getTargetContext());
super.setUp();
}
Note that the method should be implemented as described Testing Your Content Provider.
No comments:
Post a Comment