(self)
| 5 | |
| 6 | class TestPlatformCollector(unittest.TestCase): |
| 7 | def setUp(self): |
| 8 | self.registry = CollectorRegistry() |
| 9 | self.platform = _MockPlatform() |
| 10 | |
| 11 | def test_python_info(self): |
| 12 | PlatformCollector(registry=self.registry, platform=self.platform) |
nothing calls this directly
no test coverage detected