我正在尝试测试我的自定义内容提供程序的 update() 方法。由于 update() 方法中的 getContext() 方法调用为空,我收到一个空指针异常。为了缓解这个问题,我尝试实现为什么 AndroidTestCase.getContext().getApplicationContext() 返回 null?无济于事。我的测试类如下所示:
public class AddressContentProviderTest extends ProviderTestCase2<AddressContentProvider> {
public AddressContentProviderTest() {
super(AddressContentProvider.class, AddressContentProvider.class.getName());
}
protected void setUp() throws Exception {
super.setUp();
}
public void testInsert() {
Uri CONTENT_URI = Uri.parse("content://" + AddressContentProvider.AUTHORITY + "/address");
AddressContentProvider addressContentProvider = new AddressContentProvider();
ContentValues initialValues = new ContentValues();
boolean isException = false;
Uri returnURI = null;
initialValues.put("country", "test");
initialValues.put("region", "test");
initialValues.put("city", "test");
initialValues.put("state", "FL");
initialValues.put("zip", "90210");
initialValues.put("province", "test");
initialValues.put("geo_location_id", "");
returnURI = addressContentProvider.insert(CONTENT_URI, initialValues);
assertTrue(returnURI != null);
}
插入方法如下所示:
@Override
public int update(Uri uri, ContentValues values, String where, String[] whereArgs) {
SQLiteDatabase db =dbHelper.getWritableDatabase();
int count;
switch (sUriMatcher.match(uri)) {
case ADDRESS:
count = db.update(ADDRESS_TABLE_NAME, values, where, whereArgs);
break;
default:
throw new IllegalArgumentException("Unknown URI " + uri);
}
getContext().getContentResolver().notifyChange(uri, null);
return count;
}
我正在 Platform 10 上使用 Android 2.3.3 运行我的测试。