class documentation

TestCase tests.

Method setUp Create a couple instances of MyTestCase, each for the same test method, to be used in the test methods of this class.
Method test_equality In order for one test method to be runnable twice, two TestCase instances with the same test method name must not compare as equal.
Method test_hashability In order for one test method to be runnable twice, two TestCase instances with the same test method name should not have the same hash value.
Instance Variable first Undocumented
Instance Variable second Undocumented
def setUp(self): (source)

Create a couple instances of MyTestCase, each for the same test method, to be used in the test methods of this class.

def test_equality(self): (source)

In order for one test method to be runnable twice, two TestCase instances with the same test method name must not compare as equal.

def test_hashability(self): (source)

In order for one test method to be runnable twice, two TestCase instances with the same test method name should not have the same hash value.

Undocumented

Undocumented