Author: vhalbert(a)redhat.com
Date: 2009-12-18 15:51:39 -0500 (Fri, 18 Dec 2009)
New Revision: 1682
Modified:
trunk/test-integration/db/src/main/java/org/teiid/test/framework/TransactionContainer.java
Log:
Teiid 781 - removed this exception logic check because its normally handled after all
stages complete.
Modified:
trunk/test-integration/db/src/main/java/org/teiid/test/framework/TransactionContainer.java
===================================================================
---
trunk/test-integration/db/src/main/java/org/teiid/test/framework/TransactionContainer.java 2009-12-18
15:04:27 UTC (rev 1681)
+++
trunk/test-integration/db/src/main/java/org/teiid/test/framework/TransactionContainer.java 2009-12-18
20:51:39 UTC (rev 1682)
@@ -90,15 +90,6 @@
}
}
- if (test.exceptionExpected() && !test.exceptionOccurred()) {
- TransactionRuntimeException t = new TransactionRuntimeException(
- "Expected exception, but one did not occur for test: "
- + this.getClass().getName() + "."
- + test.getTestName());
- test.setApplicationException(t);
- }
-
-
debug(" test.after");
test.after();