Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
Fixes for steps without output (unconfigured or with error)
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Casters committed Oct 26, 2016
1 parent 212201d commit e1991ea
Show file tree
Hide file tree
Showing 7 changed files with 78 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/org/pentaho/di/dataset/TestType.java
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;
}
73 changes: 73 additions & 0 deletions src/org/pentaho/di/dataset/UnitTestResult.java
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;
}

}

0 comments on commit e1991ea

Please sign in to comment.