我的
PHP单元在控制台上输出. 63/129(48%)究竟是什么意思?它是否运行所有测试?
PHPUnit 3.7.22 by Sebastian Bergmann. Configuration read from PHPunit.xml ............................................................... 63 / 129 ( 48%) ............................................................... 126 / 129 ( 97%) ... Time: 0 seconds,Memory: 6.75Mb OK (129 tests,245 assertions)
PHPunit.xml看起来像:
<?xml version="1.0" encoding="utf-8" ?> <PHPunit bootstrap="vendor/autoload.PHP"> <testsuites> <testsuite name="SDK Testsuite"> <directory suffix="Test.PHP">src/MyNamespace/Test/Unit</directory> </testsuite> </testsuites> </PHPunit>
每个点代表一个单元测试.它在运行每个测试后打印一个点.第一行有63个点,这意味着129个测试中有63个(大约48%)已经运行.第二行有另外63个点,总共有126个测试.最后三个测试在第三行.
原文链接:https://www.f2er.com/php/135823.html该功能适用于测试需要很长时间的时间,您可以按照屏幕上的进度进行操作.如果其中一个测试使系统陷入僵局,它也很有用.进度表让您可以看到哪个是有问题的测试.