use of org.pentaho.di.plugins.fileopensave.providers.TestFileProvider in project pentaho-kettle by pentaho.
the class FileControllerTest method setup.
@Before
public void setup() {
List<FileProvider> fileProviders = new ArrayList<>();
fileProviders.add(new TestFileProvider());
ProviderService providerService = new ProviderService(fileProviders);
fileController = new FileController(new FileCache(), providerService);
}
Aggregations