* simulate a dataload and output its data * * @param int $dataloadId * @return DataResponse * @throws NotFoundException */
(int $dataloadId)
| 110 | * @throws NotFoundException |
| 111 | */ |
| 112 | #[NoAdminRequired] |
| 113 | public function simulate(int $dataloadId): DataResponse |
| 114 | { |
| 115 | return new DataResponse($this->DataloadService->getDataFromDatasource($dataloadId)); |
| 116 | } |
| 117 | |
| 118 | /** |
| 119 | * execute a dataload from data source and store into dataset |
nothing calls this directly
no test coverage detected