(
self,
name_a: str = "PortAlpha",
name_b: str = "PortBravo",
)
| 101 | """Manages two VirtualSerialPort instances for dual-source testing.""" |
| 102 | |
| 103 | def __init__( |
| 104 | self, |
| 105 | name_a: str = "PortAlpha", |
| 106 | name_b: str = "PortBravo", |
| 107 | ): |
| 108 | self.alpha = VirtualSerialPort(name_a) |
| 109 | self.bravo = VirtualSerialPort(name_b) |
| 110 | |
| 111 | @property |
| 112 | def device_path_a(self) -> str: |
nothing calls this directly
no test coverage detected