You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kl...@apache.org on 2015/12/22 20:26:20 UTC

[18/35] incubator-geode git commit: GEODE-700: Make sure we're disconnected from the DS before starting the test

GEODE-700: Make sure we're disconnected from the DS before starting the test


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/341e29d1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/341e29d1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/341e29d1

Branch: refs/heads/feature/GEODE-217
Commit: 341e29d1e7822e898d0be71ce439517379810919
Parents: e3d24d7
Author: Jens Deppe <jd...@pivotal.io>
Authored: Mon Dec 21 08:24:17 2015 -0800
Committer: Jens Deppe <jd...@pivotal.io>
Committed: Mon Dec 21 08:24:56 2015 -0800

----------------------------------------------------------------------
 .../internal/cli/commands/QueueCommandsDUnitTest.java           | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/341e29d1/gemfire-core/src/test/java/com/gemstone/gemfire/management/internal/cli/commands/QueueCommandsDUnitTest.java
----------------------------------------------------------------------
diff --git a/gemfire-core/src/test/java/com/gemstone/gemfire/management/internal/cli/commands/QueueCommandsDUnitTest.java b/gemfire-core/src/test/java/com/gemstone/gemfire/management/internal/cli/commands/QueueCommandsDUnitTest.java
index 54aed63..e9a4666 100644
--- a/gemfire-core/src/test/java/com/gemstone/gemfire/management/internal/cli/commands/QueueCommandsDUnitTest.java
+++ b/gemfire-core/src/test/java/com/gemstone/gemfire/management/internal/cli/commands/QueueCommandsDUnitTest.java
@@ -57,6 +57,11 @@ public class QueueCommandsDUnitTest extends CliCommandTestBase {
     super(testName);
   }
 
+  public void setUp() throws Exception {
+    disconnectAllFromDS();
+    super.setUp();
+  }
+
   public void testAsyncEventQueue() throws IOException {
     final String queue1Name = "testAsyncEventQueue1";
     final String queue2Name = "testAsyncEventQueue2";