(mut self, file: impl TestFile)
| 46 | } |
| 47 | |
| 48 | pub async fn with_file(mut self, file: impl TestFile) -> Self { |
| 49 | self.test_dir = self.test_dir.with_file_sys(file, &self.provider).await; |
| 50 | self |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | impl EnvProvider for TestBase { |
no test coverage detected