gpt4 book ai didi

PHPUnit assertTrue 问题

转载 作者:行者123 更新时间:2023-12-02 07:37:48 27 4
gpt4 key购买 nike

我正在使用 PHPUnit 来测试我的代码但是当我使用 assertTrue 时,phpunit 的行为符合预期。这是 phpunit 的正常行为吗?我收到以下错误。

断言 1 为真失败。

最佳答案

1 不是“真正的”真值。你可以试试这个:

true == 1 // return true
true === 1 // return false
false == null // return true
false === null // return false

PHPUnit 在 assertTrue 中使用 ===。所以如果你执行 assertTrue(1);,PHPUnit 就会停止,因为断言是假的。

关于PHPUnit assertTrue 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14358990/

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