use of org.pentaho.di.plugins.fileopensave.providers.model.TestTree in project pentaho-kettle by pentaho.
the class TestFileProvider method getTree.
@Override
public Tree getTree() {
TestTree testTree = new TestTree(NAME);
TestDirectory testDirectory = new TestDirectory();
testDirectory.setPath("/");
testTree.setFiles(getFiles(testDirectory, null));
return testTree;
}
Aggregations