我在groovy 1.3.7中编写了一个单元测试,其中我已经像这样返回了PagedResultList
return new PagedResultList(myList.list())
现在我已经升级到2.2.4并运行了这个单元测试我得到了一个异常
| groovy.lang.GroovyRuntimeException: Could not find matching constructor for: grails.orm.PagedResultList(java.util.ArrayList)
因为构造函数已更改。
如何让它返回PagedResultList?