(self)
| 132 | # "Return the number of tests represented by the this test object. For |
| 133 | # TestCase instances, this will always be 1" |
| 134 | def test_countTestCases(self): |
| 135 | class Foo(unittest.TestCase): |
| 136 | def test(self): pass |
| 137 | |
| 138 | self.assertEqual(Foo('test').countTestCases(), 1) |
| 139 | |
| 140 | # "Return the default type of test result object to be used to run this |
| 141 | # test. For TestCase instances, this will always be |
nothing calls this directly
no test coverage detected