我想用两个不同的测试在同一个类中创建具有两个不同设置和 tearDown 方法的单元测试测试。
每个测试都将在 python unittest 框架中使用其特定的 setUp 和 tearDown 方法。
谁能帮助我。
class processtestCase(unittest.TestCase):
print "start the process test cases "
def setUp1(self):
unittest.TestCase.setUp(self)
def test_test1(self):
"test Functinality"
def tearDown1(self):
unittest.TestCase.tearDown(self)
def setUp2(self):
unittest.TestCase.setUp2(self)
def test_test2(self):
"test Functinality"
def tearDown2(self):
unittest.TestCase.tearDown2(self) '
if __name__ == '__main__':
unittest.main()