我已经按照这里的建议尝试过。
我能够访问连接对象,但它说
IllegalStateException - 状态应该是:打开
以下是我尝试过的片段。
//set connection
testSuite.metaClass.db = db
//get connection (i am trying to access it from the same testSuite for testing purpose)
def connection = testSuite.db.getConnection()
for(def userObj :connection.User.find()){
log.info userObj
}