You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by mr...@apache.org on 2017/03/30 09:16:05 UTC

svn commit: r1789475 - /jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/plugins/document/AbstractTwoNodeTest.java

Author: mreutegg
Date: Thu Mar 30 09:16:05 2017
New Revision: 1789475

URL: http://svn.apache.org/viewvc?rev=1789475&view=rev
Log:
OAK-6008: Create test base with a two node cluster

Ignore because the base class does not have any tests

Modified:
    jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/plugins/document/AbstractTwoNodeTest.java

Modified: jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/plugins/document/AbstractTwoNodeTest.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/plugins/document/AbstractTwoNodeTest.java?rev=1789475&r1=1789474&r2=1789475&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/plugins/document/AbstractTwoNodeTest.java (original)
+++ jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/plugins/document/AbstractTwoNodeTest.java Thu Mar 30 09:16:05 2017
@@ -26,16 +26,18 @@ import com.google.common.collect.Lists;
 import org.apache.jackrabbit.oak.stats.Clock;
 import org.junit.After;
 import org.junit.Before;
+import org.junit.Ignore;
 import org.junit.runner.RunWith;
 import org.junit.runners.Parameterized;
 
 /**
  * A base class for two node cluster tests with a virtual clock.
  */
+@Ignore("This base test does not have tests")
 @RunWith(Parameterized.class)
 public class AbstractTwoNodeTest {
 
-    private final DocumentStoreFixture fixture;
+    protected final DocumentStoreFixture fixture;
 
     protected DocumentStore store1;
     protected DocumentStore store2;