diff --git a/src/test/java/de/tudresden/inf/mci/brailleplot/exporter/PrintDirectorTest.java b/src/test/java/de/tudresden/inf/mci/brailleplot/exporter/PrintDirectorTest.java
index c3a6db1980142e27f9313e5fe2158194e5675333..3ccc4b0c90033160d921fef023c981b53d3a2d3f 100644
--- a/src/test/java/de/tudresden/inf/mci/brailleplot/exporter/PrintDirectorTest.java
+++ b/src/test/java/de/tudresden/inf/mci/brailleplot/exporter/PrintDirectorTest.java
@@ -1,6 +1,7 @@
 package de.tudresden.inf.mci.brailleplot.exporter;
 
 
+import de.tudresden.inf.mci.brailleplot.configparser.Printer;
 import org.junit.jupiter.api.Assertions;
 import org.junit.jupiter.api.Test;
 
@@ -15,7 +16,8 @@ import org.junit.jupiter.api.Test;
 public class PrintDirectorTest {
 
     // Negative Tests
-
+    // Because this componend depends heavily on almost all other components, the testcases will be more integration t
+    // tests then unittests.
     /**
      * Test for giving a Null to the PrintDirector-Constructor.
      * Expected: NullPointerException.
@@ -23,69 +25,8 @@ public class PrintDirectorTest {
     @Test
     public void testNullInConstructor(){
         Assertions.assertThrows(NullPointerException.class, () -> {
-            PrintDirector printF1 = new PrintDirector(null);
-        });
-    }
-
-    /**
-     * Test for setting a printername (with the static method printerExists) which does not exist in the System.
-     * This should breake if someone registers a printer with the name "kek".
-     * Expected: returns false.
-     */
-    @Test
-    public void testPrinterDoesNotExist(){
-        Assertions.assertFalse(PrintDirector.printerExists("kek"));
-    }
-
-    /**
-     * Test for Constructer of the PrintDirector. Tests if the PrinterConfiguration "NormalPrinter" is accepted.
-     * Expected: Does not throw a Exception.
-     */
-    @Test
-    public void testConstructerWithNormalBuilder() {
-        Assertions.assertDoesNotThrow(() -> {
-            PrintDirector printT1 = new PrintDirector(PrinterConfiguration.NORMALPRINTER);
+            PrintDirector printF1 = new PrintDirector(null, null);
         });
     }
 
-    /**
-     * Test for Constructer of the PrintDirector. Tests if the PrinterConfiguration
-     * "INDEX_EVEREST_D_V4_FLOATINGDOT_PRINTER" is accepted.
-     * Expected: Does not throw a Exception.
-     */
-    @Test
-    public void testConstructerD4WithFloatingDot() {
-        Assertions.assertDoesNotThrow(() -> {
-            PrintDirector printT1 = new PrintDirector(PrinterConfiguration.INDEX_EVEREST_D_V4_FLOATINGDOT_PRINTER);
-        });
-    }
-
-    /**
-     * Test for Constructer of the PrintDirector. Tests if the PrinterConfiguration
-     * "INDEX_EVEREST_D_V4_GRAPHIC_PRINTER" is accepted.
-     * Expected: Does not throw a Exception.
-     */
-    @Test
-    public void testConstructerD4WithGraphicPrint() {
-        Assertions.assertDoesNotThrow(() -> {
-            PrintDirector printT1 = new PrintDirector(PrinterConfiguration.INDEX_EVEREST_D_V4_GRAPHIC_PRINTER);
-        });
-    }
-
-
-
-/*
-    @Test
-    public void testSetWrongPrinterName(){
-        Assertions.assertThrows(IllegalArgumentException.class, () ->{
-         PrintDirector printD = new PrintDirector(PrinterConfiguration.NORMALPRINTER);
-         Format format = new Format(new ArrayList<>());
-         Printer printer = new Printer(new ArrayList<>());
-         printD.print("kek", new SimpleMatrixDataImpl<Boolean>(printer, format,12,10,
-                 true));
-        });
-    }
-
-*/
-
 }