(self, metric_name, help_text, increments)
| 20 | self.captured_headers = header |
| 21 | |
| 22 | def increment_metrics(self, metric_name, help_text, increments): |
| 23 | c = Counter(metric_name, help_text, registry=self.registry) |
| 24 | for _ in range(increments): |
| 25 | c.inc() |
| 26 | |
| 27 | def assert_outputs(self, outputs, metric_name, help_text, increments, compressed): |
| 28 | self.assertEqual(len(outputs), 1) |
no test coverage detected