(a, b, func=lambda x, y: x + y)
| 76 | class TestClass: |
| 77 | @staticmethod |
| 78 | def compute(a, b, func=lambda x, y: x + y): |
| 79 | return func(a, b) |
| 80 | |
| 81 | @classmethod |
| 82 | def cls_compute(cls, a, b, func=lambda x, y: x + y): |
no outgoing calls
no test coverage detected