(self)
| 26 | class AioHTTPTest(AioHTTPTestCase): |
| 27 | @skipUnless(AIOHTTP_INSTALLED, "AIOHTTP is not installed") |
| 28 | def setUp(self) -> None: |
| 29 | self.registry = CollectorRegistry() |
| 30 | |
| 31 | async def get_application(self) -> web.Application: |
| 32 | app = web.Application() |
nothing calls this directly
no test coverage detected