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.
我在一个项目中运行我的 phpunit 测试,我得到了这个响应:
................................. 65 / 81 ( 80%) ................ Time: 0 seconds, Memory: 9.25Mb OK (81 tests, 190 assertions)
这意味着什么?我从未在我经常从事的其他项目中看到它。该百分比 (80%) 是否代表实际执行的测试数量?为什么只有80%?我不明白。
它所做的只是显示一个百分比,因为有太多测试需要开始一个新行以获得更多空间来输入“。” 人物。所以在它移动到下一行之前,它会告诉你第一行完成了多少。
因为(65 / 81) * 100 = 80%
(65 / 81) * 100 = 80%
是的,这是已完成测试的百分比
它只是给你一个关于进展的指示。