Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想确认一下,这是否可以将 Cakephp 测试套件(单元测试)消息自定义为我们想要的默认成功和失败消息?它显示以下消息
现在我想通过舍入函数自定义持续时间微秒到秒,并将传递的消息更改为成功或我自己的消息。我怎样才能实现这个目标?提前感谢
您可以在其中./lib/Cake/TestSuite/Reporter/CakeHtmlReporter.php修改 TestSuite 报告统计信息的方式。
./lib/Cake/TestSuite/Reporter/CakeHtmlReporter.php
我正在使用不同版本的 CakePHP,但对我来说,第 151 行是这样的:
echo '<p><strong>Time:</strong> ' . $result->time() . ' seconds</p>';
您可以$result->time()通过任何 PHP 函数获取并运行它,以获得所需的输出。因为那$result是在你的测试用例中设置的,不是吗?
$result->time()
$result