(self)
| 165 | self.assertIs(result.wasSuccessful(), False) |
| 166 | |
| 167 | def test_picklable(self): |
| 168 | result = RemoteTestResult() |
| 169 | loaded_result = pickle.loads(pickle.dumps(result)) |
| 170 | self.assertEqual(result.events, loaded_result.events) |
| 171 | |
| 172 | def test_pickle_errors_detection(self): |
| 173 | picklable_error = RuntimeError("This is fine") |
nothing calls this directly
no test coverage detected