(self)
| 530 | |
| 531 | class TestChooseEncoder(unittest.TestCase): |
| 532 | def setUp(self): |
| 533 | self.registry = CollectorRegistry() |
| 534 | c = Counter('dotted.counter', 'A counter', registry=self.registry) |
| 535 | c.inc() |
| 536 | |
| 537 | def custom_collector(self, metric_family): |
| 538 | class CustomCollector: |
nothing calls this directly
no test coverage detected