我有一个用于 gosu 中的变压器的 Guidewire Gunit,它查询系统表以获取结果代码的描述,该代码在服务器上运行时工作正常,但 Gunit 失败。我已经为 Gunit 尝试了注释 @ServerTest,但这也失败了。相同的代码在 Gosu 暂存器中运行良好。PFA的代码片段如下:
var resultCodes = Query.make(SystemTable).select().where(\elt -> elt.ResultCode == "AS01")
变量描述 = ""
if(resultCodes != null && !resultCodes.isEmpty())
{
description = resultCodes.get(0).getFullDescription()
}
我得到如下异常:
java.lang.IllegalStateException: TableMetadataFactory 在启动之前不能使用
谢谢,迪普蒂