svn commit: r772475 - /ofbiz/trunk/framework/testtools/src/org/ofbiz/testtools/JunitSuiteWrapper.java

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r772475 - /ofbiz/trunk/framework/testtools/src/org/ofbiz/testtools/JunitSuiteWrapper.java

lektran
Author: lektran
Date: Thu May  7 00:20:20 2009
New Revision: 772475

URL: http://svn.apache.org/viewvc?rev=772475&view=rev
Log:
Don't throw an exception if the test definitions aren't found, just log an error and continue with the rest of the tests

Modified:
    ofbiz/trunk/framework/testtools/src/org/ofbiz/testtools/JunitSuiteWrapper.java

Modified: ofbiz/trunk/framework/testtools/src/org/ofbiz/testtools/JunitSuiteWrapper.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/testtools/src/org/ofbiz/testtools/JunitSuiteWrapper.java?rev=772475&r1=772474&r2=772475&view=diff
==============================================================================
--- ofbiz/trunk/framework/testtools/src/org/ofbiz/testtools/JunitSuiteWrapper.java (original)
+++ ofbiz/trunk/framework/testtools/src/org/ofbiz/testtools/JunitSuiteWrapper.java Thu May  7 00:20:20 2009
@@ -62,7 +62,6 @@
             } catch (GenericConfigException e) {
                 String errMsg = "Error reading XML document from ResourceHandler for loader [" + testSuiteResource.getLoaderName() + "] and location [" + testSuiteResource.getLocation() + "]";
                 Debug.logError(e, errMsg, module);
-                throw new IllegalArgumentException(errMsg);
             }
         }
     }