This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes for steps without output (unconfigured or with error)
- Loading branch information
Matt Casters
committed
Oct 26, 2016
1 parent
212201d
commit e1991ea
Showing
7 changed files
with
78 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package org.pentaho.di.dataset; | ||
|
||
public enum TestType { | ||
CONCEPTUAL, DEVELOPMENT, UNIT_TEST; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
package org.pentaho.di.dataset; | ||
|
||
public class UnitTestResult { | ||
private String transformationName; | ||
private String unitTestName; | ||
private String dataSetName; | ||
private String stepName; | ||
private boolean error; | ||
private String comment; | ||
|
||
public UnitTestResult() { | ||
super(); | ||
} | ||
|
||
public UnitTestResult(String transformationName, String unitTestName, String dataSetName, String stepName, boolean error, String comment) { | ||
super(); | ||
this.transformationName = transformationName; | ||
this.unitTestName = unitTestName; | ||
this.dataSetName = dataSetName; | ||
this.stepName = stepName; | ||
this.error = error; | ||
this.comment = comment; | ||
} | ||
|
||
public String getTransformationName() { | ||
return transformationName; | ||
} | ||
|
||
public void setTransformationName(String transformationName) { | ||
this.transformationName = transformationName; | ||
} | ||
|
||
public String getUnitTestName() { | ||
return unitTestName; | ||
} | ||
|
||
public void setUnitTestName(String unitTestName) { | ||
this.unitTestName = unitTestName; | ||
} | ||
|
||
public String getDataSetName() { | ||
return dataSetName; | ||
} | ||
|
||
public void setDataSetName(String dataSetName) { | ||
this.dataSetName = dataSetName; | ||
} | ||
|
||
public String getStepName() { | ||
return stepName; | ||
} | ||
|
||
public void setStepName(String stepName) { | ||
this.stepName = stepName; | ||
} | ||
|
||
public boolean isError() { | ||
return error; | ||
} | ||
|
||
public void setError(boolean error) { | ||
this.error = error; | ||
} | ||
|
||
public String getComment() { | ||
return comment; | ||
} | ||
|
||
public void setComment(String comment) { | ||
this.comment = comment; | ||
} | ||
|
||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.