use of org.pentaho.metaverse.api.model.LineageHolder in project pentaho-metaverse by pentaho.
the class FileSystemLineageWriterTest method setUp.
@Before
public void setUp() throws Exception {
FileSystemLineageWriter fslw = new FileSystemLineageWriter();
writer = spy(fslw);
holder = new LineageHolder();
IExecutionProfile profile = new ExecutionProfile();
profile.setName("test");
IExecutionData data = new ExecutionData();
data.setStartTime(now);
profile.setExecutionData(data);
holder.setExecutionProfile(profile);
writer.setOutputFolder("target/outputfiles");
}
Aggregations