(self)
| 59 | # run should be aborted by setting the TestResult's shouldStop |
| 60 | # attribute to True." |
| 61 | def test_stop(self): |
| 62 | result = unittest.TestResult() |
| 63 | |
| 64 | result.stop() |
| 65 | |
| 66 | self.assertEqual(result.shouldStop, True) |
| 67 | |
| 68 | # "Called when the test case test is about to be run. The default |
| 69 | # implementation simply increments the instance's testsRun counter." |
nothing calls this directly
no test coverage detected