You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by sa...@apache.org on 2016/06/23 17:25:26 UTC

[02/15] incubator-geode git commit: GEODE-1568: disable PreloadedRegionTestCase with @Ignore

GEODE-1568: disable PreloadedRegionTestCase with @Ignore


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

Branch: refs/heads/feature/GEODE-1573
Commit: b53d28ff6696b5753c4642fc910b66042a4cc014
Parents: db739b2
Author: Kirk Lund <kl...@pivotal.io>
Authored: Sat Jun 18 18:13:44 2016 -0700
Committer: Kirk Lund <kl...@pivotal.io>
Committed: Sat Jun 18 18:13:44 2016 -0700

----------------------------------------------------------------------
 .../gemfire/cache30/PreloadedRegionTestCase.java    | 16 +++++-----------
 1 file changed, 5 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/b53d28ff/geode-core/src/test/java/com/gemstone/gemfire/cache30/PreloadedRegionTestCase.java
----------------------------------------------------------------------
diff --git a/geode-core/src/test/java/com/gemstone/gemfire/cache30/PreloadedRegionTestCase.java b/geode-core/src/test/java/com/gemstone/gemfire/cache30/PreloadedRegionTestCase.java
index b897603..7f023bb 100644
--- a/geode-core/src/test/java/com/gemstone/gemfire/cache30/PreloadedRegionTestCase.java
+++ b/geode-core/src/test/java/com/gemstone/gemfire/cache30/PreloadedRegionTestCase.java
@@ -16,14 +16,11 @@
  */
 package com.gemstone.gemfire.cache30;
 
-import org.junit.experimental.categories.Category;
-import org.junit.Test;
-
 import static org.junit.Assert.*;
 
-import com.gemstone.gemfire.test.dunit.cache.internal.JUnit4CacheTestCase;
-import com.gemstone.gemfire.test.dunit.internal.JUnit4DistributedTestCase;
-import com.gemstone.gemfire.test.junit.categories.DistributedTest;
+import org.junit.Ignore;
+import org.junit.Test;
+import org.junit.experimental.categories.Category;
 
 import com.gemstone.gemfire.cache.AttributesFactory;
 import com.gemstone.gemfire.cache.CacheException;
@@ -35,6 +32,7 @@ import com.gemstone.gemfire.test.dunit.Assert;
 import com.gemstone.gemfire.test.dunit.Host;
 import com.gemstone.gemfire.test.dunit.SerializableRunnable;
 import com.gemstone.gemfire.test.dunit.VM;
+import com.gemstone.gemfire.test.junit.categories.DistributedTest;
 
 /**
  * This class tests the functionality of a cache {@link Region region}
@@ -43,12 +41,9 @@ import com.gemstone.gemfire.test.dunit.VM;
  * @since GemFire 3.0
  */
 @Category(DistributedTest.class)
+@Ignore("TODO: test disabled because of GEODE-1568")
 public class PreloadedRegionTestCase extends MultiVMRegionTestCase {
 
-  public PreloadedRegionTestCase() {
-    super();
-  }
-
   /**
    * Returns region attributes for a <code>GLOBAL</code> region
    */
@@ -92,7 +87,6 @@ public class PreloadedRegionTestCase extends MultiVMRegionTestCase {
       }
     };
 
-
     Host host = Host.getHost(0);
     VM vm0 = host.getVM(0);