(self)
| 4762 | self.assertEqual(repr(destination2), "<clinic.Destination 'bar' type='buffer'>") |
| 4763 | |
| 4764 | def test_Module_repr(self): |
| 4765 | module = Module("foo", _make_clinic()) |
| 4766 | self.assertRegex(repr(module), r"<clinic.Module 'foo' at \d+>") |
| 4767 | |
| 4768 | def test_Class_repr(self): |
| 4769 | cls = Class("foo", _make_clinic(), None, 'some_typedef', 'some_type_object') |
nothing calls this directly
no test coverage detected