在Citrus TestSuite.xml / junitreports中设置时间

时间:2018-07-05 05:31:35

标签: java spring citrus-framework

我试图弄清楚如何记录整个测试套件和各个测试用例的时间。

我注意到,在运行/junitreports/TEST-*.xmlTEST-TestSuite.xml测试用例后生成JUnitTestNG时,两个{ {1}}和<testsuite>如下所示:

<testcase>

我查看了<?xml version="1.0" encoding="UTF-8"?> <testsuite name="TestSuite" time="0.0" tests="3" errors="0" skipped="0" failures="0"> <testcase name="Read1Test" classname="com.consol.citrus.tests.ReadTest" time="0.0"/> <testcase name="Read2Test" classname="com.consol.citrus.tests.ReadTest" time="0.0"/> <testcase name="Read3Test" classname="com.consol.citrus.tests.ReadTest" time="0.0"/> </testsuite> citrus-core,并且JUnitReporter.java已初始化,但是它不是test.duration对象或{{1内的任何参数}}方法。

我只是想知道是否还有办法在测试套件和测试用例中注入时间?

0 个答案:

没有答案