我正在使用一个外部 jar 来测试我的应用程序,这个 jar 在soapui.log 文件中发布了一些日志
但是,我无法在 groovy 屏幕的日志框架中看到它们(soapui 日志、http 日志、码头日志、脚本日志等)
我尾随 soapui.log 文件,但是在一个窗口上运行所有内容并在另一个窗口中检查结果非常耗时。
import org.jsmpp.example.*;
import org.jsmpp.bean.*;
String host = "xxxx"
int port = xxx
String user = "xxx"
String pwd = "xx"
String sysType = "xx"
String serviceType = "xxx"
session = new simpleSubmit();
session.bind(host,port,user,pwd);
当我运行此脚本时,我在 soapui.log 文件中看到以下行
2012-12-05 02:31:43,150 INFO [SMPPSession] Connected
2012-12-05 02:31:43,151 INFO [SMPPSession] Starting PDUReaderWorker with processor degree:3 ...
2012-12-05 02:31:43,165 INFO [SMPPSession] Starting EnquireLinkSender
2012-12-05 02:31:58,221 INFO [SMPPSession] PDUReaderWorker stop
2012-12-05 02:31:58,660 INFO [SMPPSession] EnquireLinkSender stop
起初我的意图是在soapUI GUI(log.output 屏幕或soapUI.log 屏幕)中显示这些行。但如果我能把它们存起来就更好了。因此我可以验证我的测试用例..