我有一个与框架集成的自定义报告。我已经实施了SQL> with the_data (n) as (
2 select 786.56 from dual union all
3 select 35 from dual
4 )
5 select cast(regexp_substr(n, '^(\d+)\.?(\d+)?$', 1, 1, null, 1) as integer) as f
6 , coalesce(cast(regexp_substr(n, '^(\d+)\.?(\d+)?$', 1, 1, null, 2) as integer), 0) as s
7 from the_data;
F S
---- ----
786 56
35 0
类。
这是负责在Html文件中打印报告的步骤
TestReport extends AbstractTestListener implements TestReporter
使用 ET=ETTe.startTest(test.getName());
ET.log(LogStatus.PASS, test.toString());
ET.log(LogStatus.PASS, "Pass");
的任何方式我都可以获取已发送到服务器的数据。为了打印响应,我们有任何方法或方法吗?
此致 BJ
答案 0 :(得分:0)
您还应该与com.consol.citrus.report.MessageListener
和onInboundMessage(...)
实施onOutboundMessage(...)
界面,以便访问记者中的已交换邮件数据。