I\'ve implemented access to a database using SQLiteOpenHelper from the android.database package within some classes (with pattern DAO).
SQLiteOpenHelper
I wrote some jun
A possible solution can be to open database using this method
myDataBase = SQLiteDatabase.openDatabase(DATABASE_NAME, null, SQLiteDatabase.OPEN_READWRITE);
And change database name in your tests. Here you can find some info about this method.