When running a suite of tests, I would always get the following message at
the end of the second test scenario:
BUILD FAILED
G:\webtest\ecmTestProject\tests\allTests.xml:8: The following error
occurred while executing this line:
G:\webtest\ecmTestProject\tests\GET015.xml:21:
java.util.concurrent.RejectedExecutionException
Does anyone know how to resolve this issue?
This is what my test suite looks like:
<?xml version="1.0"?>
<project name="ecmtestProject" default="all">
<property name="wt.deleteReports.skip" value="skip"/>
<target name="all">
<ant antfile="GET001.xml"/>
<ant antfile="GET015.xml"/>
<ant antfile="GET003.xml"/>
</target>
</project>
Thanks in advance for your help.