Implement basic user interface tests

This commit is contained in:
2016-03-11 10:35:52 -05:00
parent 547e4e5f63
commit 51e8c2f111
5 changed files with 416 additions and 2 deletions

View File

@@ -59,7 +59,7 @@ class HabitListAdapter extends BaseAdapter
}
@Override
public Object getItem(int position)
public Habit getItem(int position)
{
return loader.habitsList.get(position);
}
@@ -67,7 +67,7 @@ class HabitListAdapter extends BaseAdapter
@Override
public long getItemId(int position)
{
return ((Habit) getItem(position)).getId();
return (getItem(position)).getId();
}
@Override