在一个TestCase中测试指定的功能之一

时间:2019-03-26 10:45:31

标签: python

我正在用leetcodes学习算法,通常在一个TestCase中进行多次测试

class TestCase(unittest.TestCase):
    """
    Tesing threeSum.py Solution class.
    """
    def setUp(self):
        self.solution = Solution()
    def test_1(self):
    def test_2(self):
    ...
   def test_3(self):

当我要测试一个特定功能时,必须将其他功能注释掉。

是否有一种解决方案可以在一个TestCase中测试指定功能?

0 个答案:

没有答案