| 26 | |
| 27 | |
| 28 | class BaseTest(ABC): |
| 29 | @property |
| 30 | @abstractmethod |
| 31 | def chain(self) -> BaseChain: |
| 32 | """Chain to test with, which support run(<user_query>) function""" |
| 33 | |
| 34 | @property |
| 35 | @abstractmethod |
| 36 | def tools(self) -> List[Tool]: |
| 37 | """Workflow policy""" |
| 38 | |
| 39 | @property |
| 40 | @abstractmethod |
| 41 | def test_cases(self) -> List[TestCase]: |
| 42 | """""" |
| 43 | |
| 44 | |
| 45 | class WorkflowTester: |
nothing calls this directly
no outgoing calls
no test coverage detected