Assert that the actual event matches the expected event.
(self, actual, expected)
| 186 | self.assertEqual(actual_val, expected_val) |
| 187 | |
| 188 | def check_event(self, actual, expected): |
| 189 | """Assert that the actual event matches the expected event.""" |
| 190 | self.check_object(actual, expected) |
| 191 | |
| 192 | def actual_events(self, ignore): |
| 193 | """Return all the non-ignored events.""" |
no test coverage detected