Skip to content
Snippets Groups Projects
Commit 9b9dc5c1 authored by Florian Lambers's avatar Florian Lambers
Browse files

removed output type

parent ca16a764
No related branches found
No related tags found
No related merge requests found
package de.fhmuenster.masterthesis.Testgenerator.yaml;
public class OutputType {
private MigrationResult withOutput;
private MigrationResult withoutOutput;
public OutputType() {
}
public MigrationResult getWithOutput() {
return withOutput;
}
public void setWithOutput(MigrationResult withOutput) {
this.withOutput = withOutput;
}
public MigrationResult getWithoutOutput() {
return withoutOutput;
}
public void setWithoutOutput(MigrationResult withoutOutput) {
this.withoutOutput = withoutOutput;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment