gpt4 book ai didi

python - pytest 中的 assertTrue() 断言空列表

转载 作者:太空狗 更新时间:2023-10-30 01:41:27 54 4
gpt4 key购买 nike

有没有办法像 pytest 中的函数一样使用 assertTrue()assertFalse() 来进行 python 单元测试?我有一个返回元素列表的函数。如果列表为空,则测试需要通过断言失败。

有没有类似下面的东西:

assertFalse(function_returns_list()), "the list is non empty, contains error elements"

最佳答案

为什么不测试列表的长度:

assert len(function_returns_list()) == 0, "the list is non empty"

关于python - pytest 中的 assertTrue() 断言空列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37589745/

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