任何人都可以幫助我解決這個問題:如何測試使用ormlite的android應用程序?如何測試android與ormlite項目
我想知道如何創建模擬道路。此代碼讓我一個DAO
public Dao<Account, Integer> getAccountDao() throws SQLException {
if (accountDao == null) {
accountDao = getDao(Account.class);
}
return accountDao;
}
我的測試活動中查找此:
public class OrmActivity extends OrmLiteBaseActivity<DatabaseHelper> {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
initUi();
initUiListeners();
RuntimeExceptionDao<Account, Integer> accountDao = getHelper().getAccountDataDao();
Account account = new Account();
account.setName("name");
account.setPassword("password");
accountDao.create(account);
}
我不想做檢查創建單獨的數據庫。我想用它來模仿它。
致以問候
THX的答覆,我會檢查它 – reizals
@christine - 你的roboelectric一個示例代碼和ormlite共同努力 – rOrlig
我在這裏蓋了示例代碼:www.christine.nl – Christine