我正在尝试在Android Studio中设置单元测试(据说它仍然是“实验性的”)。我如何获得Context
?我看到的所有示例都调用AndroidTestCase.getContext()
,但在我的测试中,它返回null。
public class DummyTest extends AndroidTestCase {
public void testExample() throws Exception {
Context c = getContext();
assertNotNull(c);
}
}
这将导致AssertionFailedError
,因为返回的上下文为空。