标签: python unit-testing assert
我想知道Python的unittest中是否有内置方法来计算当前测试中成功的断言。 我们的想法是确保当前的测试实际上正在测试某些东西,或者它正在执行正确数量的断言。
E.g:
def test_testing_method(self): ... Do my test with self.assert... calls ... ... Check that this method tested something ...