(self, ip)
| 22 | |
| 23 | class CsApp: |
| 24 | def __init__(self, ip): |
| 25 | self.dev = ip.getDevice() |
| 26 | self.ip = ip.get_ip_address() |
| 27 | self.gateway = ip.get_gateway() |
| 28 | self.type = ip.get_type() |
| 29 | self.fw = ip.fw |
| 30 | self.config = ip.config |
| 31 | |
| 32 | |
| 33 | class CsApache(CsApp): |
nothing calls this directly
no test coverage detected