You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by nn...@apache.org on 2017/05/09 17:32:33 UTC

geode git commit: GEODE-2896: Changing the test category to IntegrationTest

Repository: geode
Updated Branches:
  refs/heads/develop 23eb2326f -> d58be4fa2


GEODE-2896: Changing the test category to IntegrationTest

	* Changed the test category to IntegrationTest from being an UnitTest
	* This creates a separate VM for these tests which are not affected by residual instances created by other tests.


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

Branch: refs/heads/develop
Commit: d58be4fa272135c8688e7e244d4198b73f6e113c
Parents: 23eb232
Author: nabarun <nn...@pivotal.io>
Authored: Mon May 8 17:58:58 2017 -0700
Committer: nabarun <nn...@pivotal.io>
Committed: Tue May 9 10:31:43 2017 -0700

----------------------------------------------------------------------
 .../membership/gms/mgr/GMSMembershipManagerJUnitTest.java        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode/blob/d58be4fa/geode-core/src/test/java/org/apache/geode/distributed/internal/membership/gms/mgr/GMSMembershipManagerJUnitTest.java
----------------------------------------------------------------------
diff --git a/geode-core/src/test/java/org/apache/geode/distributed/internal/membership/gms/mgr/GMSMembershipManagerJUnitTest.java b/geode-core/src/test/java/org/apache/geode/distributed/internal/membership/gms/mgr/GMSMembershipManagerJUnitTest.java
index 8c82a6f..3f81bcd 100644
--- a/geode-core/src/test/java/org/apache/geode/distributed/internal/membership/gms/mgr/GMSMembershipManagerJUnitTest.java
+++ b/geode-core/src/test/java/org/apache/geode/distributed/internal/membership/gms/mgr/GMSMembershipManagerJUnitTest.java
@@ -33,8 +33,8 @@ import org.apache.geode.distributed.internal.membership.gms.mgr.GMSMembershipMan
 import org.apache.geode.internal.admin.remote.AlertListenerMessage;
 import org.apache.geode.internal.admin.remote.RemoteTransportConfig;
 import org.apache.geode.internal.tcp.ConnectExceptions;
+import org.apache.geode.test.junit.categories.IntegrationTest;
 import org.apache.geode.test.junit.categories.MembershipTest;
-import org.apache.geode.test.junit.categories.UnitTest;
 import org.assertj.core.api.Assertions;
 import org.jgroups.util.UUID;
 import org.junit.After;
@@ -51,7 +51,7 @@ import static org.mockito.Matchers.anyInt;
 import static org.mockito.Matchers.isA;
 import static org.mockito.Mockito.*;
 
-@Category({UnitTest.class, MembershipTest.class})
+@Category({IntegrationTest.class, MembershipTest.class})
 public class GMSMembershipManagerJUnitTest {
 
   private static final long WAIT_FOR_REPLIES_MILLIS = 2000;