我想开发我的 dao 类的 Mock。如何模拟我的 GenericDao 的以下方法?:
public List<T> getList(int max, int p) throws DataAccessException {
String t= type.getT();
String sql = "from " + t+ " order by id desc";
List<T> o= HibernateUtils(type, this.getSession().createQuery(sql).setFirstResult(max* (p- 1)).setMaxResults(max).list());
return o;
}
这里面的东西:
@Override
public List<T> getList(int maxResults, int pageNumber) {
List<T> list = new ArrayList<T>();
//......
return list;
}