r"""Get the test data. Returns: List[Dict[str, Any]]: The test data.
(self)
| 109 | |
| 110 | @property |
| 111 | def test(self) -> List[Dict[str, Any]]: |
| 112 | r"""Get the test data. |
| 113 | |
| 114 | Returns: |
| 115 | List[Dict[str, Any]]: The test data. |
| 116 | """ |
| 117 | if not self._data: |
| 118 | logger.info("Data not loaded. Loading data.") |
| 119 | self.load() |
| 120 | return self._data["test"] |
| 121 | |
| 122 | @abstractmethod |
| 123 | def run( |