| 7 | state: Tuple[bool] |
| 8 | |
| 9 | class Executor(ABC): |
| 10 | @abstractmethod |
| 11 | def execute(self, func: str, tests: List[str], timeout: int = 5) -> ExecuteResult: |
| 12 | ... |
| 13 | |
| 14 | @abstractmethod |
| 15 | def evaluate(self, name: str, func: str, test: str, timeout: int = 5) -> bool: |
| 16 | ... |
| 17 |
nothing calls this directly
no outgoing calls
no test coverage detected