(self)
| 621 | |
| 622 | class TestObserveDecorator(TestCase): |
| 623 | def setUp(self): |
| 624 | self._notify1 = [] |
| 625 | self._notify2 = [] |
| 626 | |
| 627 | def notify1(self, change): |
| 628 | self._notify1.append(change) |
nothing calls this directly
no outgoing calls
no test coverage detected