Tag for Release apache-ofbiz-16.11.03

git-svn-id: https://svn.apache.org/repos/asf/ofbiz/tags/REL-16.11.03@1799442 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/framework/entity/src/test/java/org/apache/ofbiz/entity/util/EntitySaxReaderTests.java b/framework/entity/src/test/java/org/apache/ofbiz/entity/util/EntitySaxReaderTests.java
index e1fe2a6..cd19839 100644
--- a/framework/entity/src/test/java/org/apache/ofbiz/entity/util/EntitySaxReaderTests.java
+++ b/framework/entity/src/test/java/org/apache/ofbiz/entity/util/EntitySaxReaderTests.java
@@ -18,15 +18,32 @@
  *******************************************************************************/
 package org.apache.ofbiz.entity.util;
 
+import org.apache.ofbiz.base.util.Debug;
 import org.apache.ofbiz.entity.Delegator;
 import org.apache.ofbiz.entity.GenericValue;
 import org.apache.ofbiz.entity.model.ModelEntity;
+import org.junit.After;
+import org.junit.Before;
 import org.junit.Test;
 
 import static org.junit.Assert.*;
 import static org.mockito.Mockito.*;
 
 public class EntitySaxReaderTests {
+    private boolean logVerboseOn;
+
+    @Before
+    public void initialize() {
+        logVerboseOn = Debug.isOn(Debug.VERBOSE); // save the current setting (to be restored after the tests)
+        Debug.set(Debug.VERBOSE, false); // disable verbose logging: this is necessary to avoid a test error in the "parse" unit test
+    }
+
+    @After
+    public void restore() {
+        Debug.set(Debug.VERBOSE, logVerboseOn); // restore the verbose log setting
+    }
+
+
     @Test
     public void constructorWithDefaultTimeout() {
         Delegator delegator = mock(Delegator.class);