(self, implementation: Implementation)
| 40 | """ |
| 41 | |
| 42 | def __init__(self, implementation: Implementation) -> None: |
| 43 | self.implementation = implementation |
| 44 | |
| 45 | def operation(self) -> str: |
| 46 | return (f"Abstraction: Base operation with:\n" |
nothing calls this directly
no outgoing calls
no test coverage detected