在尝试在 python 中获得 TDD 的预感时,我遇到了这个FunctionTestCase
类。我理解,它定义了TestCase
类的等效函数。
assertEqual = failUnlessEqual(self, first, second, msg=None)
assertNotEqual = failIfEqual(self, first, second, msg=None)
# and so on...
使用上有显着差异FunctionTestCase
还是味道问题?