我有一个用 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?