gpt4 book ai didi

python - 如何在 Python 中编写像 Jasmine 这样的嵌套测试用例

转载 作者:行者123 更新时间:2023-12-01 21:24:10 24 4
gpt4 key购买 nike

Jasmine 可以像这样写一个嵌套的测试用例:

  describe('func1', () => {
it('case1', () => {

})
it('case2', () => {

})
})
describe('func2', () => {
it('case1', () => {

})
it('case2', () => {

})
})

我想用 Python 写同样的东西。
我在 WWW 上找不到它。

最佳答案

从 Python 3.4 开始,您可以在 unittest 测试用例类中创建子测试(当然,如果您使用标准的 unittest 库进行测试):

class MyTestCase(unittest.TestCase):
def test_func1(self):
with self.subTest('case1'):
...

with self.subTest('case2'):
...

def test_func2(self):
with self.subTest('case1'):
...

with self.subTest('case2'):
...

更多: https://docs.python.org/3/library/unittest.html#distinguishing-test-iterations-using-subtests

关于python - 如何在 Python 中编写像 Jasmine 这样的嵌套测试用例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63283184/

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