wealthberry / testdox-reduced-output-printer
一个PHPUnit结果打印机,是TestDoxCli Printer的变种,通过减少测试失败消息的大小来提高可读性
1.0.3
2021-08-31 13:25 UTC
Requires
- php: ^8.0
Requires (Dev)
- phpunit/phpunit: ^9.0
This package is auto-updated.
Last update: 2024-08-29 05:50:05 UTC
README
基于CliTestDoxPrinter的PHPUnit结果打印机,但减少了输出行数和行长度。
对于具有巨大失败消息字符串的断言,结果的可读性要好得多。如果您想查看完整消息,只需省略打印机类选项。
安装
composer require --dev wealthberry/testdox-reduced-output-printer
用法
您可以使用phpunit命令行参数使用打印机
php vendor/bin/phpunit --printer 'Wealthberry\TestDox\CliTestDoxReducedOutputPrinter'
或者,通过在phpunit.xml中添加一个printerClass属性
<phpunit bootstrap="bootstrap.php" colors="true" printerClass="Wealthberry\TestDox\CliTestDoxReducedOutputPrinter">