gpt4 book ai didi

python-2.7 - 在pytest框架中的另一个测试用例中调用测试用例

转载 作者:行者123 更新时间:2023-12-04 16:45:03 26 4
gpt4 key购买 nike

我正在使用 pytest 进行自动化。

pytest 中是否有任何选项可以在另一个测试用例中调用测试用例。

最佳答案

你当然可以。使用 pytest,测试用例是一个简单的函数或方法。

例如:

def test_foo():
assert 2 + 2 == 4

def test_bar():
assert [1] + [2] == [1, 2]
test_foo()

考虑一下您为什么要这样做。通常,保持测试解耦会带来好处,例如在测试失败时更容易调试。

关于python-2.7 - 在pytest框架中的另一个测试用例中调用测试用例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45210365/

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