(self)
| 427 | |
| 428 | class TestHasTraitsNotify(TestCase): |
| 429 | def setUp(self): |
| 430 | self._notify1 = [] |
| 431 | self._notify2 = [] |
| 432 | |
| 433 | def notify1(self, name, old, new): |
| 434 | self._notify1.append((name, old, new)) |
nothing calls this directly
no outgoing calls
no test coverage detected