You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2016/05/31 06:35:21 UTC

[3/3] isis git commit: ISIS-1419: calling bounceSystem (misnamed, just means close and re-open a session) at the end of each test.

ISIS-1419: calling bounceSystem (misnamed, just means close and re-open a session) at the end of each test.


Project: http://git-wip-us.apache.org/repos/asf/isis/repo
Commit: http://git-wip-us.apache.org/repos/asf/isis/commit/a5876219
Tree: http://git-wip-us.apache.org/repos/asf/isis/tree/a5876219
Diff: http://git-wip-us.apache.org/repos/asf/isis/diff/a5876219

Branch: refs/heads/master
Commit: a5876219839bc5d5c366d4b1e8fd1dae1eef0a18
Parents: e38eaf7
Author: Dan Haywood <da...@haywood-associates.co.uk>
Authored: Tue May 31 07:30:28 2016 +0100
Committer: Dan Haywood <da...@haywood-associates.co.uk>
Committed: Tue May 31 07:30:28 2016 +0100

----------------------------------------------------------------------
 .../apache/isis/core/integtestsupport/IntegrationTestAbstract.java  | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/isis/blob/a5876219/core/integtestsupport/src/main/java/org/apache/isis/core/integtestsupport/IntegrationTestAbstract.java
----------------------------------------------------------------------
diff --git a/core/integtestsupport/src/main/java/org/apache/isis/core/integtestsupport/IntegrationTestAbstract.java b/core/integtestsupport/src/main/java/org/apache/isis/core/integtestsupport/IntegrationTestAbstract.java
index 360ea9e..ce7a929 100644
--- a/core/integtestsupport/src/main/java/org/apache/isis/core/integtestsupport/IntegrationTestAbstract.java
+++ b/core/integtestsupport/src/main/java/org/apache/isis/core/integtestsupport/IntegrationTestAbstract.java
@@ -212,6 +212,7 @@ public abstract class IntegrationTestAbstract {
                     try {
                         base.evaluate();
                         isft.endTran();
+                        isft.bounceSystem();
                     } catch(final Throwable e) {
                         isft.bounceSystem();
                         final List<Throwable> causalChain = Throwables.getCausalChain(e);