diff --git a/src-test/src/org/openbravo/test/reporting/printing/TestWeldDefaultDesignPath.java b/src-test/src/org/openbravo/test/reporting/printing/TestWeldDefaultDesignPath.java
new file mode 100644
index 0000000000..e13e9a6e44
--- /dev/null
+++ b/src-test/src/org/openbravo/test/reporting/printing/TestWeldDefaultDesignPath.java
@@ -0,0 +1,49 @@
+/*
+ *************************************************************************
+ * The contents of this file are subject to the Openbravo  Public  License
+ * Version  1.1  (the  "License"),  being   the  Mozilla   Public  License
+ * Version 1.1  with a permitted attribution clause; you may not  use this
+ * file except in compliance with the License. You  may  obtain  a copy of
+ * the License at http://www.openbravo.com/legal/license.html
+ * Software distributed under the License  is  distributed  on  an "AS IS"
+ * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
+ * License for the specific  language  governing  rights  and  limitations
+ * under the License.
+ * The Original Code is Openbravo ERP.
+ * The Initial Developer of the Original Code is Openbravo SLU
+ * All portions are Copyright (C) 2017 Openbravo SLU
+ * All Rights Reserved.
+ * Contributor(s):  ______________________________________.
+ ************************************************************************
+ */
+
+package org.openbravo.test.reporting.printing;
+
+import org.junit.Test;
+import org.openbravo.base.exception.OBException;
+import org.openbravo.base.weld.test.WeldBaseTest;
+import org.openbravo.client.application.report.ReportingUtils;
+import org.openbravo.dal.core.OBContext;
+
+public class TestWeldDefaultDesignPath extends WeldBaseTest {
+
+  {
+    try {
+      OBContext.setAdminMode(true);
+    } finally {
+      OBContext.restorePreviousMode();
+    }
+  }
+
+  @Test
+  public void cleanDocumentData() {
+    if ("/src-loc/null".equals(ReportingUtils.getBaseDesign())) {
+      throw new OBException();
+    }
+  }
+
+  @Override
+  protected boolean shouldMockServletContext() {
+    return true;
+  }
+}
