我想要做的是实现一个单元测试,但我需要在它之前清除数据库。
问题是有时清除数据库失败并出现 NullPointerException。
基本上我在我拥有的每个 DTO 上调用 deleteAll 方法(例如 BusinessUnit.deleteAll(BusinessUnit.class)。有时这会失败(尽管并非总是如此)。
Null 指针源自 SugarRecord 自己的方法:
public static <T extends SugarRecord<?>> void deleteAll(Class<T> type) {
Database db = SugarApp.getSugarContext().getDatabase();
SQLiteDatabase sqLiteDatabase = db.getDB(); // exception is thrown here
sqLiteDatabase.delete(getTableName(type), (String)null, (String[])null);
}
什么可能导致此错误?