(self)
| 396 | return downloadable_files |
| 397 | |
| 398 | def setUp(self): |
| 399 | super().setUp() |
| 400 | test_utils.setup() |
| 401 | |
| 402 | executor._process_creator = _MockProcessWrapper |
| 403 | self.executor_service = ExecutionService(AnyUserAuthorizer(), _IdGeneratorMock(), test_utils.env_variables) |
| 404 | |
| 405 | self.feature = FileDownloadFeature(UserFileStorage(b'123456'), test_utils.temp_folder) |
| 406 | self.feature.subscribe(self.executor_service) |
| 407 | |
| 408 | def tearDown(self): |
| 409 | super().tearDown() |
nothing calls this directly
no test coverage detected