(self, func: str, tests: List[str], timeout: int = 5)
| 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: |