Author: lektran
Date: Thu May 7 00:20:20 2009
New Revision: 772475
URL:
http://svn.apache.org/viewvc?rev=772475&view=revLog:
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);
}
}
}