如果我的测试用例设计为:
class TestCase01:
.........def test01(self):
.................. print('test01')
......... def test02(self):
.................. print("test02")
.........def test03(self):
..................print("test03")
.........def test04(self):
..................print("test04")
如果我的 test03 用例执行失败,其他的测试用例都是成功的,使用失败的测试用例重新执行,但是 test03 的执行,需要 test01 先执行,然后执行 test02 在执行 test03
这时候,该怎们办