diff --git a/Testgenerator/src/main/java/de/fhmuenster/masterthesis/Testgenerator/yaml/OutputType.java b/Testgenerator/src/main/java/de/fhmuenster/masterthesis/Testgenerator/yaml/OutputType.java
deleted file mode 100644
index 321f49051eb0ff194e33ae0a9a2969dfbf07b612..0000000000000000000000000000000000000000
--- a/Testgenerator/src/main/java/de/fhmuenster/masterthesis/Testgenerator/yaml/OutputType.java
+++ /dev/null
@@ -1,26 +0,0 @@
-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;
-	}
-}