gpt4 book ai didi

phpunit - 解释 PHP 单元输出

转载 作者:行者123 更新时间:2023-12-04 06:04:08 24 4
gpt4 key购买 nike

我的 PHP Unit 在控制台上输出这个。究竟是做什么的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 个测试。最后三个测试在第三行。

该功能适用​​于测试需要很长时间并且您可以在屏幕上跟踪进度。如果其中一项测试使系统陷入僵局,这也很有用。进度表可让您查看哪一项是有问题的测试。

关于phpunit - 解释 PHP 单元输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18142699/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com