Parameters: - functionName - funcArgs
(self, functionName, funcArgs)
| 39 | |
| 40 | class Iface(object): |
| 41 | def execute(self, functionName, funcArgs): |
| 42 | """ |
| 43 | Parameters: |
| 44 | - functionName |
| 45 | - funcArgs |
| 46 | |
| 47 | """ |
| 48 | pass |
| 49 | |
| 50 | |
| 51 | class Client(Iface): |
nothing calls this directly
no outgoing calls
no test coverage detected