Initialize QEMU test integration.
(self)
| 22 | """Integration class for Docker-based QEMU testing.""" |
| 23 | |
| 24 | def __init__(self): |
| 25 | """Initialize QEMU test integration.""" |
| 26 | self.docker_available = self._check_docker() |
| 27 | |
| 28 | def _check_docker(self) -> bool: |
| 29 | """Check if Docker is available.""" |
nothing calls this directly
no test coverage detected