http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheClientStoreSelfTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheClientStoreSelfTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheClientStoreSelfTest.java
index ecf9d2e..9019bb4 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheClientStoreSelfTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheClientStoreSelfTest.java
@@ -42,12 +42,16 @@ import 
org.apache.ignite.spi.discovery.tcp.ipfinder.TcpDiscoveryIpFinder;
 import org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder;
 import org.apache.ignite.testframework.MvccFeatureChecker;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 import static 
org.apache.ignite.IgniteSystemProperties.IGNITE_SKIP_CONFIGURATION_CONSISTENCY_CHECK;
 
 /**
  * Tests for cache client with and without store.
  */
+@RunWith(JUnit4.class)
 public class CacheClientStoreSelfTest extends GridCommonAbstractTest {
     /** */
     private static final TcpDiscoveryIpFinder IP_FINDER = new 
TcpDiscoveryVmIpFinder(true);
@@ -122,6 +126,7 @@ public class CacheClientStoreSelfTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testCorrectStore() throws Exception {
         nearEnabled = false;
         cacheMode = CacheMode.PARTITIONED;
@@ -153,6 +158,7 @@ public class CacheClientStoreSelfTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testInvalidStore() throws Exception {
         nearEnabled = false;
         cacheMode = CacheMode.PARTITIONED;
@@ -168,6 +174,7 @@ public class CacheClientStoreSelfTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testDisabledConsistencyCheck() throws Exception {
         nearEnabled = false;
         cacheMode = CacheMode.PARTITIONED;
@@ -191,6 +198,7 @@ public class CacheClientStoreSelfTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testNoStoreNearDisabled() throws Exception {
         nearEnabled = false;
         cacheMode = CacheMode.PARTITIONED;
@@ -204,6 +212,7 @@ public class CacheClientStoreSelfTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testNoStoreNearEnabled() throws Exception {
         nearEnabled = true;
         cacheMode = CacheMode.PARTITIONED;
@@ -246,6 +255,7 @@ public class CacheClientStoreSelfTest extends 
GridCommonAbstractTest {
      *
      * @throws Exception If failed.
      */
+    @Test
     public void testLocalLoadClient() throws Exception {
         cacheMode = CacheMode.LOCAL;
         factory = new Factory3();
@@ -271,6 +281,7 @@ public class CacheClientStoreSelfTest extends 
GridCommonAbstractTest {
      *
      * @throws Exception If failed.
      */
+    @Test
     public void testLocalLoadServer() throws Exception {
         cacheMode = CacheMode.LOCAL;
         factory = new Factory3();
@@ -293,6 +304,7 @@ public class CacheClientStoreSelfTest extends 
GridCommonAbstractTest {
     /**
      * Load cache created on client as REPLICATED and see if it only loaded on 
servers
      */
+    @Test
     public void testReplicatedLoadFromClient() throws Exception {
         cacheMode = CacheMode.REPLICATED;
         factory = new Factory3();
@@ -316,6 +328,7 @@ public class CacheClientStoreSelfTest extends 
GridCommonAbstractTest {
     /**
      * Load cache created on client as REPLICATED and see if it only loaded on 
servers
      */
+    @Test
     public void testPartitionedLoadFromClient() throws Exception {
         cacheMode = CacheMode.PARTITIONED;
         factory = new Factory3();
@@ -404,4 +417,4 @@ public class CacheClientStoreSelfTest extends 
GridCommonAbstractTest {
                 clo.apply(i, i);
         }
     }
-}
\ No newline at end of file
+}

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheComparatorTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheComparatorTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheComparatorTest.java
index 0bd587d..66bdcfd 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheComparatorTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheComparatorTest.java
@@ -20,14 +20,19 @@ package org.apache.ignite.internal.processors.cache;
 import junit.framework.TestCase;
 import org.apache.ignite.configuration.CacheConfiguration;
 import org.apache.ignite.internal.processors.query.QuerySchema;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 /**
  * Test for CacheComparators from ClusterCachesInfo
  */
+@RunWith(JUnit4.class)
 public class CacheComparatorTest extends TestCase {
     /**
      * Test if comparator not violates its general contract
      */
+    @Test
     public void testDirect() {
         DynamicCacheDescriptor desc1 = new DynamicCacheDescriptor(null,
             new CacheConfiguration().setName("1111"), 
CacheType.DATA_STRUCTURES,

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheConcurrentReadThroughTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheConcurrentReadThroughTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheConcurrentReadThroughTest.java
index 1e8ed4d..e26d901 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheConcurrentReadThroughTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheConcurrentReadThroughTest.java
@@ -36,10 +36,14 @@ import 
org.apache.ignite.spi.discovery.tcp.ipfinder.TcpDiscoveryIpFinder;
 import org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder;
 import org.apache.ignite.testframework.MvccFeatureChecker;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 /**
  * Test was added to check fix for IGNITE-4465.
  */
+@RunWith(JUnit4.class)
 public class CacheConcurrentReadThroughTest extends GridCommonAbstractTest {
     /** */
     private static final TcpDiscoveryIpFinder ipFinder = new 
TcpDiscoveryVmIpFinder(true);
@@ -84,6 +88,7 @@ public class CacheConcurrentReadThroughTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testConcurrentReadThrough() throws Exception {
         startGrid(0);
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheConfigurationLeakTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheConfigurationLeakTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheConfigurationLeakTest.java
index 6b03867..d85c52b 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheConfigurationLeakTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheConfigurationLeakTest.java
@@ -27,10 +27,14 @@ import org.apache.ignite.configuration.IgniteConfiguration;
 import org.apache.ignite.lang.IgniteInClosure;
 import org.apache.ignite.testframework.GridTestUtils;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 /**
  *
  */
+@RunWith(JUnit4.class)
 public class CacheConfigurationLeakTest extends GridCommonAbstractTest {
     /**
      *
@@ -60,6 +64,7 @@ public class CacheConfigurationLeakTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testCacheCreateLeak() throws Exception {
         final Ignite ignite = grid();
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheConnectionLeakStoreTxTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheConnectionLeakStoreTxTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheConnectionLeakStoreTxTest.java
index db08d53..29efe81 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheConnectionLeakStoreTxTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheConnectionLeakStoreTxTest.java
@@ -42,6 +42,9 @@ import 
org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
 import org.apache.ignite.transactions.Transaction;
 import org.apache.ignite.transactions.TransactionConcurrency;
 import org.apache.ignite.transactions.TransactionIsolation;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 import static org.apache.ignite.transactions.TransactionConcurrency.OPTIMISTIC;
 import static 
org.apache.ignite.transactions.TransactionConcurrency.PESSIMISTIC;
@@ -51,6 +54,7 @@ import static 
org.apache.ignite.transactions.TransactionIsolation.REPEATABLE_REA
 /**
  *
  */
+@RunWith(JUnit4.class)
 public class CacheConnectionLeakStoreTxTest extends GridCommonAbstractTest {
     /** */
     private static final TcpDiscoveryIpFinder IP_FINDER = new 
TcpDiscoveryVmIpFinder(true);
@@ -101,6 +105,7 @@ public class CacheConnectionLeakStoreTxTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testConnectionLeakOneBackupAtomic() throws Exception {
         checkConnectionLeak(CacheAtomicityMode.ATOMIC, null, null);
     }
@@ -108,6 +113,7 @@ public class CacheConnectionLeakStoreTxTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testConnectionLeakOneBackupAtomicLoadFromStore() throws 
Exception {
         isLoadFromStore = true;
 
@@ -117,6 +123,7 @@ public class CacheConnectionLeakStoreTxTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testConnectionLeakOneBackupOptimisticRepeatableRead() throws 
Exception {
         checkConnectionLeak(CacheAtomicityMode.TRANSACTIONAL, OPTIMISTIC, 
REPEATABLE_READ);
     }
@@ -124,6 +131,7 @@ public class CacheConnectionLeakStoreTxTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void 
testConnectionLeakOneBackupOptimisticRepeatableReadLoadFromStore() throws 
Exception {
         isLoadFromStore = true;
 
@@ -133,6 +141,7 @@ public class CacheConnectionLeakStoreTxTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testConnectionLeakOneBackupOptimisticReadCommitted() throws 
Exception {
         checkConnectionLeak(CacheAtomicityMode.TRANSACTIONAL, OPTIMISTIC, 
READ_COMMITTED);
     }
@@ -140,6 +149,7 @@ public class CacheConnectionLeakStoreTxTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void 
testConnectionLeakOneBackupOptimisticReadCommittedLoadFromStore() throws 
Exception {
         isLoadFromStore = true;
 
@@ -149,6 +159,7 @@ public class CacheConnectionLeakStoreTxTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testConnectionLeakOneBackupPessimisticRepeatableRead() throws 
Exception {
         checkConnectionLeak(CacheAtomicityMode.TRANSACTIONAL, PESSIMISTIC, 
REPEATABLE_READ);
     }
@@ -156,6 +167,7 @@ public class CacheConnectionLeakStoreTxTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testConnectionLeakOneBackupPessimisticReadCommitted() throws 
Exception {
         checkConnectionLeak(CacheAtomicityMode.TRANSACTIONAL, PESSIMISTIC, 
READ_COMMITTED);
     }
@@ -163,6 +175,7 @@ public class CacheConnectionLeakStoreTxTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void 
testConnectionLeakOneBackupPessimisticReadCommittedLoadFromStore() throws 
Exception {
         isLoadFromStore = true;
 
@@ -172,6 +185,7 @@ public class CacheConnectionLeakStoreTxTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testConnectionLeakOneBackupMvccPessimisticRepeatableRead() 
throws Exception {
         fail("https://issues.apache.org/jira/browse/IGNITE-8582";);
 
@@ -181,6 +195,7 @@ public class CacheConnectionLeakStoreTxTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void 
testConnectionLeakOneBackupMvccPessimisticRepeatableReadLoadFromStore() throws 
Exception {
         fail("https://issues.apache.org/jira/browse/IGNITE-8582";);
 
@@ -303,4 +318,4 @@ public class CacheConnectionLeakStoreTxTest extends 
GridCommonAbstractTest {
             sessions.remove(ses == null ? NULL : ses);
         }
     }
-}
\ No newline at end of file
+}

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheDataRegionConfigurationTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheDataRegionConfigurationTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheDataRegionConfigurationTest.java
index 614c900..852fca4 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheDataRegionConfigurationTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheDataRegionConfigurationTest.java
@@ -29,10 +29,14 @@ import 
org.apache.ignite.internal.mem.IgniteOutOfMemoryException;
 import org.apache.ignite.testframework.GridTestUtils;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
 import org.jetbrains.annotations.Nullable;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 /**
  *
  */
+@RunWith(JUnit4.class)
 public class CacheDataRegionConfigurationTest extends GridCommonAbstractTest {
     /** */
     private volatile CacheConfiguration ccfg;
@@ -77,6 +81,7 @@ public class CacheDataRegionConfigurationTest extends 
GridCommonAbstractTest {
     /**
      * Verifies that proper exception is thrown when DataRegion is 
misconfigured for cache.
      */
+    @Test
     public void testMissingDataRegion() {
         ccfg = new CacheConfiguration(DEFAULT_CACHE_NAME);
 
@@ -88,6 +93,7 @@ public class CacheDataRegionConfigurationTest extends 
GridCommonAbstractTest {
     /**
      * Verifies that {@link IgniteOutOfMemoryException} is thrown when cache 
is configured with too small DataRegion.
      */
+    @Test
     public void testTooSmallDataRegion() throws Exception {
         memCfg = new DataStorageConfiguration();
 
@@ -142,6 +148,7 @@ public class CacheDataRegionConfigurationTest extends 
GridCommonAbstractTest {
     /**
      * Verifies that with enough memory allocated adding values to cache 
doesn't cause any exceptions.
      */
+    @Test
     public void testProperlySizedMemoryPolicy() throws Exception {
         memCfg = new DataStorageConfiguration();
 
@@ -177,6 +184,7 @@ public class CacheDataRegionConfigurationTest extends 
GridCommonAbstractTest {
      * Verifies that {@link IgniteCheckedException} is thrown when swap and 
persistence are enabled at the same time
      * for a data region.
      */
+    @Test
     public void testSetPersistenceAndSwap() {
         DataRegionConfiguration invCfg = new DataRegionConfiguration();
 
@@ -200,6 +208,7 @@ public class CacheDataRegionConfigurationTest extends 
GridCommonAbstractTest {
     /**
      * Verifies that {@link IgniteCheckedException} is thrown when page 
eviction threshold is less than 0.5.
      */
+    @Test
     public void testSetSmallInvalidEviction() {
         final double SMALL_EVICTION_THRESHOLD = 0.1D;
         DataRegionConfiguration invCfg = new DataRegionConfiguration();
@@ -222,6 +231,7 @@ public class CacheDataRegionConfigurationTest extends 
GridCommonAbstractTest {
     /**
      * Verifies that {@link IgniteCheckedException} is thrown when page 
eviction threshold is greater than 0.999.
      */
+    @Test
     public void testSetBigInvalidEviction() {
         final double BIG_EVICTION_THRESHOLD = 1.0D;
         DataRegionConfiguration invCfg = new DataRegionConfiguration();
@@ -244,6 +254,7 @@ public class CacheDataRegionConfigurationTest extends 
GridCommonAbstractTest {
     /**
      * Verifies that {@link IgniteCheckedException} is thrown when empty pages 
pool size is less than 10
      */
+    @Test
     public void testInvalidSmallEmptyPagesPoolSize() {
         final int SMALL_PAGES_POOL_SIZE = 5;
         DataRegionConfiguration invCfg = new DataRegionConfiguration();
@@ -267,6 +278,7 @@ public class CacheDataRegionConfigurationTest extends 
GridCommonAbstractTest {
      * Verifies that {@link IgniteCheckedException} is thrown when empty pages 
pool size is greater than
      * DataRegionConfiguration.getMaxSize() / 
DataStorageConfiguration.getPageSize() / 10.
      */
+    @Test
     public void testInvalidBigEmptyPagesPoolSize() {
         final int DFLT_PAGE_SIZE = 1024;
         long expectedMaxPoolSize;
@@ -298,6 +310,7 @@ public class CacheDataRegionConfigurationTest extends 
GridCommonAbstractTest {
      * Verifies that {@link IgniteCheckedException} is thrown when 
IgniteCheckedException if validation of
      * memory metrics properties fails. Metrics rate time interval must not be 
less than 1000ms.
      */
+    @Test
     public void testInvalidMetricsProperties() {
         final long SMALL_RATE_TIME_INTERVAL_MS = 999;
         DataRegionConfiguration invCfg = new DataRegionConfiguration();
@@ -321,6 +334,7 @@ public class CacheDataRegionConfigurationTest extends 
GridCommonAbstractTest {
      * Verifies that {@link IgniteCheckedException} is thrown when 
IgniteCheckedException if validation of
      * memory metrics properties fails. Metrics sub interval count must be 
positive.
      */
+    @Test
     public void testInvalidSubIntervalCount() {
         final int NEG_SUB_INTERVAL_COUNT = -1000;
         DataRegionConfiguration invCfg = new DataRegionConfiguration();

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheDeferredDeleteQueueTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheDeferredDeleteQueueTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheDeferredDeleteQueueTest.java
index 479ac8e..adef1dd 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheDeferredDeleteQueueTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheDeferredDeleteQueueTest.java
@@ -28,6 +28,9 @@ import 
org.apache.ignite.internal.processors.cache.distributed.dht.topology.Grid
 import org.apache.ignite.internal.util.lang.GridAbsPredicate;
 import org.apache.ignite.testframework.GridTestUtils;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 import static 
org.apache.ignite.IgniteSystemProperties.IGNITE_CACHE_REMOVED_ENTRIES_TTL;
 import static org.apache.ignite.cache.CacheAtomicityMode.ATOMIC;
@@ -39,6 +42,7 @@ import static 
org.apache.ignite.cache.CacheWriteSynchronizationMode.FULL_SYNC;
 /**
  *
  */
+@RunWith(JUnit4.class)
 public class CacheDeferredDeleteQueueTest extends GridCommonAbstractTest {
     /** */
     private static String ttlProp;
@@ -66,6 +70,7 @@ public class CacheDeferredDeleteQueueTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testDeferredDeleteQueue() throws Exception {
         testQueue(ATOMIC, false);
 
@@ -81,6 +86,7 @@ public class CacheDeferredDeleteQueueTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testDeferredDeleteQueueMvcc() throws Exception {
         fail("https://issues.apache.org/jira/browse/IGNITE-7187";);
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheDeferredDeleteSanitySelfTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheDeferredDeleteSanitySelfTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheDeferredDeleteSanitySelfTest.java
index 6039384..aeba3bc 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheDeferredDeleteSanitySelfTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheDeferredDeleteSanitySelfTest.java
@@ -23,6 +23,9 @@ import org.apache.ignite.cache.CacheMode;
 import org.apache.ignite.configuration.CacheConfiguration;
 import org.apache.ignite.configuration.NearCacheConfiguration;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 import static org.apache.ignite.cache.CacheAtomicityMode.ATOMIC;
 import static org.apache.ignite.cache.CacheAtomicityMode.TRANSACTIONAL;
@@ -34,6 +37,7 @@ import static org.apache.ignite.cache.CacheMode.REPLICATED;
 /**
  * Sanity tests of deferred delete for different cache configurations.
  */
+@RunWith(JUnit4.class)
 public class CacheDeferredDeleteSanitySelfTest extends GridCommonAbstractTest {
     /** {@inheritDoc} */
     @Override protected void beforeTestsStarted() throws Exception {
@@ -43,6 +47,7 @@ public class CacheDeferredDeleteSanitySelfTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If fails.
      */
+    @Test
     public void testDeferredDelete() throws Exception {
         testDeferredDelete(LOCAL, ATOMIC, false, false);
         testDeferredDelete(LOCAL, TRANSACTIONAL, false, false);
@@ -67,6 +72,7 @@ public class CacheDeferredDeleteSanitySelfTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If fails.
      */
+    @Test
     public void testDeferredDeleteMvcc() throws Exception {
         testDeferredDelete(PARTITIONED, TRANSACTIONAL_SNAPSHOT, false, true);
         testDeferredDelete(REPLICATED, TRANSACTIONAL_SNAPSHOT, false, true);
@@ -75,6 +81,7 @@ public class CacheDeferredDeleteSanitySelfTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If fails.
      */
+    @Test
     public void testDeferredDeleteMvccNear() throws Exception {
         fail("https://issues.apache.org/jira/browse/IGNITE-7187";);
 
@@ -85,6 +92,7 @@ public class CacheDeferredDeleteSanitySelfTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If fails.
      */
+    @Test
     public void testDeferredDeleteMvccLocal() throws Exception {
         fail("https://issues.apache.org/jira/browse/IGNITE-9530";);
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheDhtLocalPartitionAfterRemoveSelfTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheDhtLocalPartitionAfterRemoveSelfTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheDhtLocalPartitionAfterRemoveSelfTest.java
index 09f2a6a..3d380f0 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheDhtLocalPartitionAfterRemoveSelfTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheDhtLocalPartitionAfterRemoveSelfTest.java
@@ -22,12 +22,16 @@ import org.apache.ignite.configuration.CacheConfiguration;
 import org.apache.ignite.configuration.IgniteConfiguration;
 import 
org.apache.ignite.internal.processors.cache.distributed.dht.topology.GridDhtLocalPartition;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 import static org.apache.ignite.cache.CacheAtomicityMode.TRANSACTIONAL;
 
 /**
  * Test for remove operation.
  */
+@RunWith(JUnit4.class)
 public class CacheDhtLocalPartitionAfterRemoveSelfTest extends 
GridCommonAbstractTest {
     /** Grid count. */
     private static final int GRID_CNT = 3;
@@ -54,6 +58,7 @@ public class CacheDhtLocalPartitionAfterRemoveSelfTest 
extends GridCommonAbstrac
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testMemoryUsage() throws Exception {
         assertEquals(10_000, GridDhtLocalPartition.MAX_DELETE_QUEUE_SIZE);
 
@@ -105,4 +110,4 @@ public class CacheDhtLocalPartitionAfterRemoveSelfTest 
extends GridCommonAbstrac
             return key.equals(((TestKey)obj).key);
         }
     }
-}
\ No newline at end of file
+}

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheEntryProcessorCopySelfTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheEntryProcessorCopySelfTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheEntryProcessorCopySelfTest.java
index aabd3b6..5c0f3d4 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheEntryProcessorCopySelfTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheEntryProcessorCopySelfTest.java
@@ -35,10 +35,14 @@ import 
org.apache.ignite.internal.processors.affinity.AffinityTopologyVersion;
 import org.apache.ignite.internal.util.typedef.internal.CU;
 import org.apache.ignite.internal.util.typedef.internal.U;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 /**
  * Test for value copy in entry processor.
  */
+@RunWith(JUnit4.class)
 public class CacheEntryProcessorCopySelfTest extends GridCommonAbstractTest {
     /** Old value. */
     private static final int OLD_VAL = 100;
@@ -69,6 +73,7 @@ public class CacheEntryProcessorCopySelfTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testMutableEntryWithP2PEnabled() throws Exception {
         doTestMutableEntry(true);
     }
@@ -76,6 +81,7 @@ public class CacheEntryProcessorCopySelfTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testMutableEntryWithP2PDisabled() throws Exception {
         doTestMutableEntry(false);
     }

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheEnumOperationsAbstractTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheEnumOperationsAbstractTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheEnumOperationsAbstractTest.java
index 0cffeb6..573e68d 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheEnumOperationsAbstractTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheEnumOperationsAbstractTest.java
@@ -33,6 +33,9 @@ import org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi;
 import org.apache.ignite.spi.discovery.tcp.ipfinder.TcpDiscoveryIpFinder;
 import org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 import static org.apache.ignite.cache.CacheAtomicityMode.ATOMIC;
 import static org.apache.ignite.cache.CacheAtomicityMode.TRANSACTIONAL;
@@ -43,6 +46,7 @@ import static 
org.apache.ignite.cache.CacheWriteSynchronizationMode.FULL_SYNC;
 /**
  *
  */
+@RunWith(JUnit4.class)
 public abstract class CacheEnumOperationsAbstractTest extends 
GridCommonAbstractTest {
     /** */
     private static final TcpDiscoveryIpFinder IP_FINDER = new 
TcpDiscoveryVmIpFinder(true);
@@ -84,6 +88,7 @@ public abstract class CacheEnumOperationsAbstractTest extends 
GridCommonAbstract
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testAtomic() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(PARTITIONED, 1, ATOMIC);
 
@@ -93,6 +98,7 @@ public abstract class CacheEnumOperationsAbstractTest extends 
GridCommonAbstract
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testTx() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(PARTITIONED, 1, TRANSACTIONAL);
 
@@ -102,6 +108,7 @@ public abstract class CacheEnumOperationsAbstractTest 
extends GridCommonAbstract
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testMvccTx() throws Exception {
         if (!singleNode())
             fail("https://issues.apache.org/jira/browse/IGNITE-7187";);

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheEventWithTxLabelTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheEventWithTxLabelTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheEventWithTxLabelTest.java
index dabf0db..277a15b 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheEventWithTxLabelTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheEventWithTxLabelTest.java
@@ -44,6 +44,9 @@ import org.apache.ignite.transactions.Transaction;
 import org.apache.ignite.transactions.TransactionConcurrency;
 import org.apache.ignite.transactions.TransactionIsolation;
 import org.junit.Assert;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 import static org.apache.ignite.events.EventType.EVT_CACHE_OBJECT_PUT;
 import static org.apache.ignite.events.EventType.EVT_CACHE_OBJECT_READ;
@@ -53,6 +56,7 @@ import static 
org.apache.ignite.events.EventType.EVT_CACHE_OBJECT_REMOVED;
  * Test to check passing transaction's label for EVT_CACHE_OBJECT_READ, 
EVT_CACHE_OBJECT_PUT,
  * EVT_CACHE_OBJECT_REMOVED events.
  */
+@RunWith(JUnit4.class)
 public class CacheEventWithTxLabelTest extends GridCommonAbstractTest {
     /** Types event to be checked. */
     private static final int[] CACHE_EVENT_TYPES = {EVT_CACHE_OBJECT_READ, 
EVT_CACHE_OBJECT_PUT, EVT_CACHE_OBJECT_REMOVED};
@@ -106,9 +110,6 @@ public class CacheEventWithTxLabelTest extends 
GridCommonAbstractTest {
 
     /** {@inheritDoc} */
     @Override protected void beforeTestsStarted() throws Exception {
-        if (MvccFeatureChecker.forcedMvcc())
-            fail("https://issues.apache.org/jira/browse/IGNITE-10270";);
-
         super.beforeTestsStarted();
 
         client = false;
@@ -127,6 +128,12 @@ public class CacheEventWithTxLabelTest extends 
GridCommonAbstractTest {
     }
 
     /** {@inheritDoc} */
+    @Override protected void beforeTest() throws Exception {
+        if (MvccFeatureChecker.forcedMvcc())
+            fail("https://issues.apache.org/jira/browse/IGNITE-10270";);
+    }
+
+    /** {@inheritDoc} */
     @Override protected void afterTestsStopped() throws Exception {
         super.afterTestsStopped();
 
@@ -138,6 +145,7 @@ public class CacheEventWithTxLabelTest extends 
GridCommonAbstractTest {
      *
      * @throws Exception If failed.
      */
+    @Test
     public void testPassTxLabelInCashEventForAllCases() throws Exception {
         Ignite[] nodes = {client(), primary(), backup1(), backup2()};
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheExchangeMessageDuplicatedStateTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheExchangeMessageDuplicatedStateTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheExchangeMessageDuplicatedStateTest.java
index cdd0002..aca2e5f 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheExchangeMessageDuplicatedStateTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheExchangeMessageDuplicatedStateTest.java
@@ -43,12 +43,16 @@ import org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi;
 import org.apache.ignite.spi.discovery.tcp.ipfinder.TcpDiscoveryIpFinder;
 import org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 import static org.apache.ignite.testframework.GridTestUtils.getFieldValue;
 
 /**
  *
  */
+@RunWith(JUnit4.class)
 public class CacheExchangeMessageDuplicatedStateTest extends 
GridCommonAbstractTest {
     /** */
     private static TcpDiscoveryIpFinder ipFinder = new 
TcpDiscoveryVmIpFinder(true);
@@ -146,6 +150,7 @@ public class CacheExchangeMessageDuplicatedStateTest 
extends GridCommonAbstractT
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testExchangeMessages() throws Exception {
         ignite(0);
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheFutureExceptionSelfTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheFutureExceptionSelfTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheFutureExceptionSelfTest.java
index 78cd568..17e0832 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheFutureExceptionSelfTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheFutureExceptionSelfTest.java
@@ -35,12 +35,16 @@ import 
org.apache.ignite.spi.discovery.tcp.ipfinder.TcpDiscoveryIpFinder;
 import org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder;
 import org.apache.ignite.testframework.MvccFeatureChecker;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 import static java.util.concurrent.TimeUnit.SECONDS;
 
 /**
  * Cache future self test.
  */
+@RunWith(JUnit4.class)
 public class CacheFutureExceptionSelfTest extends GridCommonAbstractTest {
     /** */
     private static final TcpDiscoveryIpFinder IP_FINDER = new 
TcpDiscoveryVmIpFinder(true);
@@ -74,6 +78,7 @@ public class CacheFutureExceptionSelfTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testAsyncCacheFuture() throws Exception {
         startGrid(0);
 
@@ -163,4 +168,4 @@ public class CacheFutureExceptionSelfTest extends 
GridCommonAbstractTest {
             in.readObject();
         }
     }
-}
\ No newline at end of file
+}

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGetEntryAbstractTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGetEntryAbstractTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGetEntryAbstractTest.java
index 3e7b791..2f2612f 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGetEntryAbstractTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGetEntryAbstractTest.java
@@ -41,6 +41,9 @@ import org.apache.ignite.transactions.Transaction;
 import org.apache.ignite.transactions.TransactionConcurrency;
 import org.apache.ignite.transactions.TransactionIsolation;
 import org.jetbrains.annotations.Nullable;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 import static org.apache.ignite.cache.CacheAtomicityMode.ATOMIC;
 import static org.apache.ignite.cache.CacheAtomicityMode.TRANSACTIONAL;
@@ -57,6 +60,7 @@ import static 
org.apache.ignite.transactions.TransactionIsolation.SERIALIZABLE;
 /**
  * Test getEntry and getEntries methods.
  */
+@RunWith(JUnit4.class)
 public abstract class CacheGetEntryAbstractTest extends 
GridCacheAbstractSelfTest {
     /** */
     private static final String UPDATED_ENTRY_ERR = "Impossible to get version 
for entry updated in transaction";
@@ -97,6 +101,7 @@ public abstract class CacheGetEntryAbstractTest extends 
GridCacheAbstractSelfTes
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testNear() throws Exception {
         CacheConfiguration cfg = new CacheConfiguration(DEFAULT_CACHE_NAME);
 
@@ -112,6 +117,7 @@ public abstract class CacheGetEntryAbstractTest extends 
GridCacheAbstractSelfTes
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testNearTransactional() throws Exception {
         CacheConfiguration cfg = new CacheConfiguration(DEFAULT_CACHE_NAME);
 
@@ -127,6 +133,7 @@ public abstract class CacheGetEntryAbstractTest extends 
GridCacheAbstractSelfTes
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testPartitioned() throws Exception {
         CacheConfiguration cfg = new CacheConfiguration(DEFAULT_CACHE_NAME);
 
@@ -141,6 +148,7 @@ public abstract class CacheGetEntryAbstractTest extends 
GridCacheAbstractSelfTes
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testPartitionedTransactional() throws Exception {
         CacheConfiguration cfg = new CacheConfiguration(DEFAULT_CACHE_NAME);
 
@@ -155,6 +163,7 @@ public abstract class CacheGetEntryAbstractTest extends 
GridCacheAbstractSelfTes
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testLocal() throws Exception {
         CacheConfiguration cfg = new CacheConfiguration(DEFAULT_CACHE_NAME);
 
@@ -169,6 +178,7 @@ public abstract class CacheGetEntryAbstractTest extends 
GridCacheAbstractSelfTes
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testLocalTransactional() throws Exception {
         CacheConfiguration cfg = new CacheConfiguration(DEFAULT_CACHE_NAME);
 
@@ -183,6 +193,7 @@ public abstract class CacheGetEntryAbstractTest extends 
GridCacheAbstractSelfTes
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testReplicated() throws Exception {
         CacheConfiguration cfg = new CacheConfiguration(DEFAULT_CACHE_NAME);
 
@@ -197,6 +208,7 @@ public abstract class CacheGetEntryAbstractTest extends 
GridCacheAbstractSelfTes
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testReplicatedTransactional() throws Exception {
         CacheConfiguration cfg = new CacheConfiguration(DEFAULT_CACHE_NAME);
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGetEntryPessimisticRepeatableReadSelfTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGetEntryPessimisticRepeatableReadSelfTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGetEntryPessimisticRepeatableReadSelfTest.java
index 906b726..ad1114b 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGetEntryPessimisticRepeatableReadSelfTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGetEntryPessimisticRepeatableReadSelfTest.java
@@ -21,6 +21,9 @@ import org.apache.ignite.configuration.CacheConfiguration;
 import org.apache.ignite.configuration.NearCacheConfiguration;
 import org.apache.ignite.transactions.TransactionConcurrency;
 import org.apache.ignite.transactions.TransactionIsolation;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 import static 
org.apache.ignite.cache.CacheAtomicityMode.TRANSACTIONAL_SNAPSHOT;
 import static org.apache.ignite.cache.CacheMode.LOCAL;
@@ -31,6 +34,7 @@ import static 
org.apache.ignite.cache.CacheWriteSynchronizationMode.FULL_SYNC;
 /**
  * Test getEntry and getEntries methods.
  */
+@RunWith(JUnit4.class)
 public class CacheGetEntryPessimisticRepeatableReadSelfTest extends 
CacheGetEntryAbstractTest {
     /** {@inheritDoc} */
     @Override protected TransactionConcurrency concurrency() {
@@ -45,6 +49,7 @@ public class CacheGetEntryPessimisticRepeatableReadSelfTest 
extends CacheGetEntr
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testNearTransactionalMvcc() throws Exception {
         fail("https://issues.apache.org/jira/browse/IGNITE-7187";);
 
@@ -62,6 +67,7 @@ public class CacheGetEntryPessimisticRepeatableReadSelfTest 
extends CacheGetEntr
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testPartitionedTransactionalMvcc() throws Exception {
         CacheConfiguration cfg = new CacheConfiguration(DEFAULT_CACHE_NAME);
 
@@ -76,6 +82,7 @@ public class CacheGetEntryPessimisticRepeatableReadSelfTest 
extends CacheGetEntr
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testLocalTransactionalMvcc() throws Exception {
         fail("https://issues.apache.org/jira/browse/IGNITE-9530";);
 
@@ -92,6 +99,7 @@ public class CacheGetEntryPessimisticRepeatableReadSelfTest 
extends CacheGetEntr
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testReplicatedTransactionalMvcc() throws Exception {
         CacheConfiguration cfg = new CacheConfiguration(DEFAULT_CACHE_NAME);
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGetFromJobTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGetFromJobTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGetFromJobTest.java
index 7c9eeec..05a7c58 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGetFromJobTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGetFromJobTest.java
@@ -26,10 +26,14 @@ import org.apache.ignite.internal.util.typedef.CA;
 import org.apache.ignite.lang.IgniteCallable;
 import org.apache.ignite.resources.IgniteInstanceResource;
 import org.apache.ignite.testframework.GridTestUtils;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 /**
  * Job tries to get cache during topology change.
  */
+@RunWith(JUnit4.class)
 public class CacheGetFromJobTest extends GridCacheAbstractSelfTest {
     /** {@inheritDoc} */
     @Override protected int gridCount() {
@@ -49,6 +53,7 @@ public class CacheGetFromJobTest extends 
GridCacheAbstractSelfTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testTopologyChange() throws Exception {
         final AtomicReference<Exception> err = new AtomicReference<>();
 
@@ -113,4 +118,4 @@ public class CacheGetFromJobTest extends 
GridCacheAbstractSelfTest {
             return null;
         }
     }
-}
\ No newline at end of file
+}

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGetsDistributionAbstractTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGetsDistributionAbstractTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGetsDistributionAbstractTest.java
index 559a719..c4d4909 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGetsDistributionAbstractTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGetsDistributionAbstractTest.java
@@ -40,6 +40,9 @@ import 
org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
 import org.apache.ignite.transactions.Transaction;
 import org.apache.ignite.transactions.TransactionConcurrency;
 import org.apache.ignite.transactions.TransactionIsolation;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 import static org.apache.ignite.cache.CacheWriteSynchronizationMode.FULL_SYNC;
 import static org.apache.ignite.internal.IgniteNodeAttributes.ATTR_MACS;
@@ -49,6 +52,7 @@ import static 
org.apache.ignite.transactions.TransactionIsolation.REPEATABLE_REA
 /**
  * Tests of replicated cache's 'get' requests distribution.
  */
+@RunWith(JUnit4.class)
 public abstract class CacheGetsDistributionAbstractTest extends 
GridCommonAbstractTest {
     /** Client nodes instance's name. */
     private static final String CLIENT_NAME = "client";
@@ -176,6 +180,7 @@ public abstract class CacheGetsDistributionAbstractTest 
extends GridCommonAbstra
      * @throws Exception In case of an error.
      * @see #runTestBalancingDistribution(boolean)
      */
+    @Test
     public void testGetRequestsGeneratorDistribution() throws Exception {
         runTestBalancingDistribution(false);
     }
@@ -186,6 +191,7 @@ public abstract class CacheGetsDistributionAbstractTest 
extends GridCommonAbstra
      * @throws Exception In case of an error.
      * @see #runTestBalancingDistribution(boolean)
      */
+    @Test
     public void testGetAllRequestsGeneratorDistribution() throws Exception {
         runTestBalancingDistribution(true);
     }
@@ -263,6 +269,7 @@ public abstract class CacheGetsDistributionAbstractTest 
extends GridCommonAbstra
      * @throws Exception In case of an error.
      * @see #runTestSameHostDistribution(UUID, boolean)
      */
+    @Test
     public void testGetRequestsDistribution() throws Exception {
         UUID destId = grid(0).localNode().id();
 
@@ -275,6 +282,7 @@ public abstract class CacheGetsDistributionAbstractTest 
extends GridCommonAbstra
      * @throws Exception In case of an error.
      * @see #runTestSameHostDistribution(UUID, boolean)
      */
+    @Test
     public void testGetAllRequestsDistribution() throws Exception {
         UUID destId = grid(gridCount() - 1).localNode().id();
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGroupLocalConfigurationSelfTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGroupLocalConfigurationSelfTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGroupLocalConfigurationSelfTest.java
index 51f9001..eb8d395 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGroupLocalConfigurationSelfTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGroupLocalConfigurationSelfTest.java
@@ -23,10 +23,14 @@ import org.apache.ignite.internal.IgniteKernal;
 import org.apache.ignite.internal.util.typedef.internal.U;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
 import org.jetbrains.annotations.Nullable;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 /**
  *
  */
+@RunWith(JUnit4.class)
 public class CacheGroupLocalConfigurationSelfTest extends 
GridCommonAbstractTest {
     /** */
     private static final String SECOND_NODE_NAME = "secondNode";
@@ -84,6 +88,7 @@ public class CacheGroupLocalConfigurationSelfTest extends 
GridCommonAbstractTest
      *
      * @throws Exception If failed.
      */
+    @Test
     public void testDefaultGroupLocalAttributesPreserved() throws Exception {
         useNonDfltCacheGrp = false;
 
@@ -96,6 +101,7 @@ public class CacheGroupLocalConfigurationSelfTest extends 
GridCommonAbstractTest
      *
      * @throws Exception If failed.
      */
+    @Test
     public void testNonDefaultGroupLocalAttributesPreserved() throws Exception 
{
         useNonDfltCacheGrp = true;
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGroupMetricsMBeanTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGroupMetricsMBeanTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGroupMetricsMBeanTest.java
index 3cd730f..9dca0b1 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGroupMetricsMBeanTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGroupMetricsMBeanTest.java
@@ -52,10 +52,14 @@ import org.apache.ignite.lang.IgnitePredicate;
 import org.apache.ignite.mxbean.CacheGroupMetricsMXBean;
 import org.apache.ignite.testframework.GridTestUtils;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 /**
  * Cache group JMX metrics test.
  */
+@RunWith(JUnit4.class)
 public class CacheGroupMetricsMBeanTest extends GridCommonAbstractTest 
implements Serializable {
     /** */
     private boolean pds = false;
@@ -246,6 +250,7 @@ public class CacheGroupMetricsMBeanTest extends 
GridCommonAbstractTest implement
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testCacheGroupMetrics() throws Exception {
         pds = false;
 
@@ -348,6 +353,7 @@ public class CacheGroupMetricsMBeanTest extends 
GridCommonAbstractTest implement
     /**
      * Test allocated pages counts for cache groups.
      */
+    @Test
     public void testAllocatedPages() throws Exception {
         pds = true;
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGroupsMetricsRebalanceTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGroupsMetricsRebalanceTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGroupsMetricsRebalanceTest.java
index 7312d81..97c5fdc 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGroupsMetricsRebalanceTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheGroupsMetricsRebalanceTest.java
@@ -39,6 +39,9 @@ import org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi;
 import org.apache.ignite.spi.discovery.tcp.ipfinder.TcpDiscoveryIpFinder;
 import org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 import static 
org.apache.ignite.IgniteSystemProperties.IGNITE_REBALANCE_STATISTICS_TIME_INTERVAL;
 import static org.apache.ignite.testframework.GridTestUtils.runAsync;
@@ -47,6 +50,7 @@ import static 
org.apache.ignite.testframework.GridTestUtils.waitForCondition;
 /**
  *
  */
+@RunWith(JUnit4.class)
 public class CacheGroupsMetricsRebalanceTest extends GridCommonAbstractTest {
     /** */
     private static final TcpDiscoveryIpFinder ipFinder = new 
TcpDiscoveryVmIpFinder(true);
@@ -114,6 +118,7 @@ public class CacheGroupsMetricsRebalanceTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testRebalance() throws Exception {
         Ignite ignite = startGrids(4);
 
@@ -171,6 +176,7 @@ public class CacheGroupsMetricsRebalanceTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testRebalanceEstimateFinishTime() throws Exception {
         System.setProperty(IGNITE_REBALANCE_STATISTICS_TIME_INTERVAL, 
String.valueOf(1000));
 
@@ -298,6 +304,7 @@ public class CacheGroupsMetricsRebalanceTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testRebalanceDelay() throws Exception {
         Ignite ig1 = startGrid(1);
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheInterceptorPartitionCounterLocalSanityTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheInterceptorPartitionCounterLocalSanityTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheInterceptorPartitionCounterLocalSanityTest.java
index 3be51e9..0337ab2 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheInterceptorPartitionCounterLocalSanityTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheInterceptorPartitionCounterLocalSanityTest.java
@@ -47,6 +47,9 @@ import org.apache.ignite.transactions.TransactionConcurrency;
 import org.apache.ignite.transactions.TransactionIsolation;
 import org.eclipse.jetty.util.BlockingArrayQueue;
 import org.jetbrains.annotations.NotNull;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 import static java.util.concurrent.TimeUnit.MILLISECONDS;
 import static java.util.concurrent.TimeUnit.SECONDS;
@@ -61,6 +64,7 @@ import static 
org.apache.ignite.transactions.TransactionIsolation.SERIALIZABLE;
 /**
  *
  */
+@RunWith(JUnit4.class)
 public class CacheInterceptorPartitionCounterLocalSanityTest extends 
GridCommonAbstractTest {
     /** */
     private static final int NODES = 1;
@@ -105,6 +109,7 @@ public class 
CacheInterceptorPartitionCounterLocalSanityTest extends GridCommonA
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testLocal() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(ATOMIC,false);
 
@@ -114,6 +119,7 @@ public class 
CacheInterceptorPartitionCounterLocalSanityTest extends GridCommonA
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testLocalWithStore() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(ATOMIC,true);
 
@@ -123,6 +129,7 @@ public class 
CacheInterceptorPartitionCounterLocalSanityTest extends GridCommonA
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testLocalTx() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(TRANSACTIONAL,false);
 
@@ -132,6 +139,7 @@ public class 
CacheInterceptorPartitionCounterLocalSanityTest extends GridCommonA
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testLocalTxWithStore() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(TRANSACTIONAL,true);
 
@@ -141,6 +149,7 @@ public class 
CacheInterceptorPartitionCounterLocalSanityTest extends GridCommonA
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testLocalMvccTx() throws Exception {
         fail("https://issues.apache.org/jira/browse/IGNITE-9530";);
 
@@ -152,6 +161,7 @@ public class 
CacheInterceptorPartitionCounterLocalSanityTest extends GridCommonA
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testLocalMvccTxWithStore() throws Exception {
         fail("https://issues.apache.org/jira/browse/IGNITE-9530";);
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheInterceptorPartitionCounterRandomOperationsTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheInterceptorPartitionCounterRandomOperationsTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheInterceptorPartitionCounterRandomOperationsTest.java
index 385091a..53d9d72 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheInterceptorPartitionCounterRandomOperationsTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheInterceptorPartitionCounterRandomOperationsTest.java
@@ -57,6 +57,9 @@ import org.apache.ignite.transactions.TransactionConcurrency;
 import org.apache.ignite.transactions.TransactionIsolation;
 import org.eclipse.jetty.util.BlockingArrayQueue;
 import org.jetbrains.annotations.NotNull;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 import static java.util.concurrent.TimeUnit.MILLISECONDS;
 import static java.util.concurrent.TimeUnit.SECONDS;
@@ -73,6 +76,7 @@ import static 
org.apache.ignite.transactions.TransactionIsolation.SERIALIZABLE;
 /**
  *
  */
+@RunWith(JUnit4.class)
 public class CacheInterceptorPartitionCounterRandomOperationsTest extends 
GridCommonAbstractTest {
     /** */
     private static TcpDiscoveryIpFinder ipFinder = new 
TcpDiscoveryVmIpFinder(true);
@@ -138,6 +142,7 @@ public class 
CacheInterceptorPartitionCounterRandomOperationsTest extends GridCo
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testAtomic() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(PARTITIONED,
             1,
@@ -150,6 +155,7 @@ public class 
CacheInterceptorPartitionCounterRandomOperationsTest extends GridCo
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testAtomicWithStore() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(PARTITIONED,
             1,
@@ -162,6 +168,7 @@ public class 
CacheInterceptorPartitionCounterRandomOperationsTest extends GridCo
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testAtomicReplicated() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(REPLICATED,
             0,
@@ -174,6 +181,7 @@ public class 
CacheInterceptorPartitionCounterRandomOperationsTest extends GridCo
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testAtomicReplicatedWithStore() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(REPLICATED,
             0,
@@ -186,6 +194,7 @@ public class 
CacheInterceptorPartitionCounterRandomOperationsTest extends GridCo
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testAtomicNoBackups() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(PARTITIONED,
             0,
@@ -198,6 +207,7 @@ public class 
CacheInterceptorPartitionCounterRandomOperationsTest extends GridCo
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testTx() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(PARTITIONED,
             1,
@@ -210,6 +220,7 @@ public class 
CacheInterceptorPartitionCounterRandomOperationsTest extends GridCo
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testTxWithStore() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(PARTITIONED,
             1,
@@ -222,6 +233,7 @@ public class 
CacheInterceptorPartitionCounterRandomOperationsTest extends GridCo
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testTxExplicit() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(PARTITIONED,
             1,
@@ -234,6 +246,7 @@ public class 
CacheInterceptorPartitionCounterRandomOperationsTest extends GridCo
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testTxReplicated() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(REPLICATED,
             0,
@@ -246,6 +259,7 @@ public class 
CacheInterceptorPartitionCounterRandomOperationsTest extends GridCo
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testTxReplicatedWithStore() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(REPLICATED,
             0,
@@ -258,6 +272,7 @@ public class 
CacheInterceptorPartitionCounterRandomOperationsTest extends GridCo
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testTxNoBackups() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(PARTITIONED,
             0,
@@ -270,6 +285,7 @@ public class 
CacheInterceptorPartitionCounterRandomOperationsTest extends GridCo
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testTxNoBackupsWithStore() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(PARTITIONED,
             0,
@@ -282,6 +298,7 @@ public class 
CacheInterceptorPartitionCounterRandomOperationsTest extends GridCo
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testTxNoBackupsExplicit() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(PARTITIONED,
             0,
@@ -294,6 +311,7 @@ public class 
CacheInterceptorPartitionCounterRandomOperationsTest extends GridCo
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testMvccTx() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(PARTITIONED,
             1,
@@ -306,6 +324,7 @@ public class 
CacheInterceptorPartitionCounterRandomOperationsTest extends GridCo
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testMvccTxWithStore() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(PARTITIONED,
             1,
@@ -318,6 +337,7 @@ public class 
CacheInterceptorPartitionCounterRandomOperationsTest extends GridCo
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testMvccTxExplicit() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(PARTITIONED,
             1,
@@ -330,6 +350,7 @@ public class 
CacheInterceptorPartitionCounterRandomOperationsTest extends GridCo
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testMvccTxReplicated() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(REPLICATED,
             0,
@@ -342,6 +363,7 @@ public class 
CacheInterceptorPartitionCounterRandomOperationsTest extends GridCo
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testMvccTxReplicatedWithStore() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(REPLICATED,
             0,
@@ -354,6 +376,7 @@ public class 
CacheInterceptorPartitionCounterRandomOperationsTest extends GridCo
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testMvccTxNoBackups() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(PARTITIONED,
             0,
@@ -366,6 +389,7 @@ public class 
CacheInterceptorPartitionCounterRandomOperationsTest extends GridCo
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testMvccTxNoBackupsWithStore() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(PARTITIONED,
             0,
@@ -378,6 +402,7 @@ public class 
CacheInterceptorPartitionCounterRandomOperationsTest extends GridCo
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testMvccTxNoBackupsExplicit() throws Exception {
         CacheConfiguration<Object, Object> ccfg = 
cacheConfiguration(PARTITIONED,
             0,

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheKeepBinaryTransactionTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheKeepBinaryTransactionTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheKeepBinaryTransactionTest.java
index 43e0578..538bf8d 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheKeepBinaryTransactionTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheKeepBinaryTransactionTest.java
@@ -31,10 +31,14 @@ import 
org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
 import org.apache.ignite.transactions.Transaction;
 import org.apache.ignite.transactions.TransactionConcurrency;
 import org.apache.ignite.transactions.TransactionIsolation;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 /**
  * Test that no deserialization happens with binary objects and keepBinary set 
flag.
  */
+@RunWith(JUnit4.class)
 public class CacheKeepBinaryTransactionTest extends GridCommonAbstractTest {
     /** {@inheritDoc} */
     @Override protected IgniteConfiguration getConfiguration(String gridName) 
throws Exception {
@@ -69,6 +73,7 @@ public class CacheKeepBinaryTransactionTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testBinaryGet() throws Exception {
         IgniteEx ignite = grid(0);
         IgniteCache<Object, Object> cache = 
ignite.cache("tx-cache").withKeepBinary();
@@ -84,6 +89,7 @@ public class CacheKeepBinaryTransactionTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testBinaryContains() throws Exception {
         IgniteEx ignite = grid(0);
         IgniteCache<Object, Object> cache = 
ignite.cache("tx-cache").withKeepBinary();
@@ -99,6 +105,7 @@ public class CacheKeepBinaryTransactionTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testBinaryPutGetContains() throws Exception {
         IgniteEx ignite = grid(0);
         IgniteCache<Object, Object> cache = 
ignite.cache("tx-cache").withKeepBinary();

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheMetricsEntitiesCountTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheMetricsEntitiesCountTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheMetricsEntitiesCountTest.java
index 09a438b..df396b6 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheMetricsEntitiesCountTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheMetricsEntitiesCountTest.java
@@ -31,6 +31,9 @@ import org.apache.ignite.configuration.NearCacheConfiguration;
 import org.apache.ignite.internal.util.typedef.internal.U;
 import org.apache.ignite.testframework.MvccFeatureChecker;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 /**
  * This test checks that entries count metrics, calculated by method
@@ -38,6 +41,7 @@ import 
org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
  * over local partitions to get all set of metrics), have the same values as 
metrics, calculated by individual methods
  * (which use iteration over local partition per each method call).
  */
+@RunWith(JUnit4.class)
 public class CacheMetricsEntitiesCountTest extends GridCommonAbstractTest {
     /** Grid count. */
     private static final int GRID_CNT = 3;
@@ -104,6 +108,7 @@ public class CacheMetricsEntitiesCountTest extends 
GridCommonAbstractTest {
     /**
      * Test entities count, calculated by different implementations.
      */
+    @Test
     public void testEnitiesCount() throws Exception {
         awaitPartitionMapExchange();
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheMetricsForClusterGroupSelfTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheMetricsForClusterGroupSelfTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheMetricsForClusterGroupSelfTest.java
index 9616a24..73ff37c 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheMetricsForClusterGroupSelfTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheMetricsForClusterGroupSelfTest.java
@@ -33,12 +33,16 @@ import org.apache.ignite.lang.IgniteClosure;
 import org.apache.ignite.lang.IgnitePredicate;
 import org.apache.ignite.testframework.MvccFeatureChecker;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 import static org.apache.ignite.events.EventType.EVT_NODE_METRICS_UPDATED;
 
 /**
  * Test for cluster wide cache metrics.
  */
+@RunWith(JUnit4.class)
 public class CacheMetricsForClusterGroupSelfTest extends 
GridCommonAbstractTest {
     /** Grid count. */
     private static final int GRID_CNT = 3;
@@ -83,6 +87,7 @@ public class CacheMetricsForClusterGroupSelfTest extends 
GridCommonAbstractTest
     /**
      * Test cluster group metrics in case of statistics enabled.
      */
+    @Test
     public void testMetricsStatisticsEnabled() throws Exception {
         startGrids();
 
@@ -118,6 +123,7 @@ public class CacheMetricsForClusterGroupSelfTest extends 
GridCommonAbstractTest
      *
      * @throws Exception If failed.
      */
+    @Test
     public void testMetricsStatisticsDisabled() throws Exception {
         startGrids();
 
@@ -151,6 +157,7 @@ public class CacheMetricsForClusterGroupSelfTest extends 
GridCommonAbstractTest
     /**
      * Tests that only local metrics are updating if discovery updates 
disabled.
      */
+    @Test
     public void testMetricsDiscoveryUpdatesDisabled() throws Exception {
         
System.setProperty(IgniteSystemProperties.IGNITE_DISCOVERY_DISABLE_CACHE_METRICS_UPDATE,
 "true");
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheMetricsManageTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheMetricsManageTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheMetricsManageTest.java
index 94830be..4121ceb 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheMetricsManageTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheMetricsManageTest.java
@@ -54,10 +54,14 @@ import 
org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder;
 import org.apache.ignite.testframework.GridTestUtils;
 import org.apache.ignite.testframework.MvccFeatureChecker;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 /**
  *
  */
+@RunWith(JUnit4.class)
 public class CacheMetricsManageTest extends GridCommonAbstractTest {
     /** */
     private static final TcpDiscoveryIpFinder ipFinder = new 
TcpDiscoveryVmIpFinder(true);
@@ -80,6 +84,7 @@ public class CacheMetricsManageTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testJmxNoPdsStatisticsEnable() throws Exception {
         if (MvccFeatureChecker.forcedMvcc())
             fail("https://issues.apache.org/jira/browse/IGNITE-9224";);
@@ -90,6 +95,7 @@ public class CacheMetricsManageTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testJmxPdsStatisticsEnable() throws Exception {
         if (MvccFeatureChecker.forcedMvcc())
             fail("https://issues.apache.org/jira/browse/IGNITE-10421";);
@@ -100,6 +106,7 @@ public class CacheMetricsManageTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testCacheManagerStatisticsEnable() throws Exception {
         final CacheManager mgr1 = 
Caching.getCachingProvider().getCacheManager();
         final CacheManager mgr2 = 
Caching.getCachingProvider().getCacheManager();
@@ -139,6 +146,7 @@ public class CacheMetricsManageTest extends 
GridCommonAbstractTest {
     /**
      *
      */
+    @Test
     public void testPublicApiStatisticsEnable() throws Exception {
         Ignite ig1 = startGrid(1);
         startGrid(2);
@@ -166,6 +174,7 @@ public class CacheMetricsManageTest extends 
GridCommonAbstractTest {
     /**
      *
      */
+    @Test
     public void testMultiThreadStatisticsEnable() throws Exception {
         startGrids(5);
 
@@ -222,6 +231,7 @@ public class CacheMetricsManageTest extends 
GridCommonAbstractTest {
     /**
      *
      */
+    @Test
     public void testCacheApiClearStatistics() throws Exception {
         startGrids(3);
 
@@ -239,6 +249,7 @@ public class CacheMetricsManageTest extends 
GridCommonAbstractTest {
     /**
      *
      */
+    @Test
     public void testClearStatisticsAfterDisableStatistics() throws Exception {
         startGrids(3);
 
@@ -260,6 +271,7 @@ public class CacheMetricsManageTest extends 
GridCommonAbstractTest {
     /**
      *
      */
+    @Test
     public void testClusterApiClearStatistics() throws Exception {
         startGrids(3);
 
@@ -284,6 +296,7 @@ public class CacheMetricsManageTest extends 
GridCommonAbstractTest {
     /**
      *
      */
+    @Test
     public void testJmxApiClearStatistics() throws Exception {
         startGrids(3);
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNamesSelfTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNamesSelfTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNamesSelfTest.java
index d7d06a1..de04b9e 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNamesSelfTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNamesSelfTest.java
@@ -23,10 +23,14 @@ import org.apache.ignite.cache.CacheMode;
 import org.apache.ignite.configuration.CacheConfiguration;
 import org.apache.ignite.configuration.IgniteConfiguration;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 /**
  * Test that validates {@link Ignite#cacheNames()} implementation.
  */
+@RunWith(JUnit4.class)
 public class CacheNamesSelfTest extends GridCommonAbstractTest {
     /** */
     private boolean client;
@@ -57,6 +61,7 @@ public class CacheNamesSelfTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception In case of failure.
      */
+    @Test
     public void testCacheNames() throws Exception {
         try {
             startGridsMultiThreaded(2);

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNamesWithSpecialCharactersTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNamesWithSpecialCharactersTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNamesWithSpecialCharactersTest.java
index 96b7c0a..0272de8 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNamesWithSpecialCharactersTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNamesWithSpecialCharactersTest.java
@@ -23,10 +23,14 @@ import org.apache.ignite.cache.CacheMode;
 import org.apache.ignite.configuration.CacheConfiguration;
 import org.apache.ignite.configuration.IgniteConfiguration;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 /**
  * Test that validates {@link Ignite#cacheNames()} implementation.
  */
+@RunWith(JUnit4.class)
 public class CacheNamesWithSpecialCharactersTest extends 
GridCommonAbstractTest {
     /** */
     private static final String CACHE_NAME_1 = "--№=+:(replicated)";
@@ -54,6 +58,7 @@ public class CacheNamesWithSpecialCharactersTest extends 
GridCommonAbstractTest
     /**
      * @throws Exception In case of failure.
      */
+    @Test
     public void testCacheNames() throws Exception {
         try {
             startGridsMultiThreaded(2);

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNearReaderUpdateTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNearReaderUpdateTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNearReaderUpdateTest.java
index e47ebb3..c4deb14 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNearReaderUpdateTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNearReaderUpdateTest.java
@@ -49,6 +49,9 @@ import org.apache.ignite.transactions.Transaction;
 import org.apache.ignite.transactions.TransactionConcurrency;
 import org.apache.ignite.transactions.TransactionIsolation;
 import org.apache.ignite.transactions.TransactionOptimisticException;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 import static org.apache.ignite.cache.CacheAtomicityMode.TRANSACTIONAL;
 import static org.apache.ignite.cache.CacheMode.PARTITIONED;
@@ -61,6 +64,7 @@ import static 
org.apache.ignite.transactions.TransactionIsolation.SERIALIZABLE;
 /**
  *
  */
+@RunWith(JUnit4.class)
 public class CacheNearReaderUpdateTest extends GridCommonAbstractTest {
     /** */
     private static final TcpDiscoveryIpFinder IP_FINDER = new 
TcpDiscoveryVmIpFinder(true);
@@ -113,6 +117,7 @@ public class CacheNearReaderUpdateTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testNoBackups() throws Exception {
         runTestGetUpdateMultithreaded(cacheConfiguration(PARTITIONED, 
FULL_SYNC, 0, false, false));
     }
@@ -120,6 +125,7 @@ public class CacheNearReaderUpdateTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testOneBackup() throws Exception {
         runTestGetUpdateMultithreaded(cacheConfiguration(PARTITIONED, 
FULL_SYNC, 1, false, false));
     }
@@ -127,6 +133,7 @@ public class CacheNearReaderUpdateTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testOneBackupNearEnabled() throws Exception {
         runTestGetUpdateMultithreaded(cacheConfiguration(PARTITIONED, 
FULL_SYNC, 1, false, true));
     }
@@ -134,6 +141,7 @@ public class CacheNearReaderUpdateTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testOneBackupStoreEnabled() throws Exception {
         runTestGetUpdateMultithreaded(cacheConfiguration(PARTITIONED, 
FULL_SYNC, 1, true, false));
     }

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNearUpdateTopologyChangeAbstractTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNearUpdateTopologyChangeAbstractTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNearUpdateTopologyChangeAbstractTest.java
index 21b3c72..6cf9b01 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNearUpdateTopologyChangeAbstractTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNearUpdateTopologyChangeAbstractTest.java
@@ -27,6 +27,9 @@ import org.apache.ignite.cluster.ClusterNode;
 import org.apache.ignite.configuration.NearCacheConfiguration;
 import org.apache.ignite.internal.util.lang.GridAbsPredicate;
 import org.apache.ignite.testframework.GridTestUtils;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 import static org.apache.ignite.cache.CacheMode.PARTITIONED;
 import static org.apache.ignite.cache.CachePeekMode.ONHEAP;
@@ -34,6 +37,7 @@ import static org.apache.ignite.cache.CachePeekMode.ONHEAP;
 /**
  *
  */
+@RunWith(JUnit4.class)
 public abstract class CacheNearUpdateTopologyChangeAbstractTest extends 
IgniteCacheAbstractTest {
     /** {@inheritDoc} */
     @Override protected int gridCount() {
@@ -53,6 +57,7 @@ public abstract class 
CacheNearUpdateTopologyChangeAbstractTest extends IgniteCa
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testNearUpdateTopologyChange() throws Exception {
         awaitPartitionMapExchange();
 
@@ -140,4 +145,4 @@ public abstract class 
CacheNearUpdateTopologyChangeAbstractTest extends IgniteCa
 
         assertEquals((Object)2, nearCache.localPeek(key, ONHEAP));
     }
-}
\ No newline at end of file
+}

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNoAffinityExchangeTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNoAffinityExchangeTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNoAffinityExchangeTest.java
index 7eada30..d300e9a 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNoAffinityExchangeTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheNoAffinityExchangeTest.java
@@ -46,10 +46,14 @@ import 
org.apache.ignite.spi.discovery.tcp.messages.TcpDiscoveryNodeLeftMessage;
 import org.apache.ignite.testframework.GridTestUtils;
 import org.apache.ignite.testframework.MvccFeatureChecker;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 /**
  *
  */
+@RunWith(JUnit4.class)
 public class CacheNoAffinityExchangeTest extends GridCommonAbstractTest {
     /** */
     private volatile boolean startClient;
@@ -96,6 +100,7 @@ public class CacheNoAffinityExchangeTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testNoAffinityChangeOnClientJoin() throws Exception {
         Ignite ig = startGrids(4);
 
@@ -153,6 +158,7 @@ public class CacheNoAffinityExchangeTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testNoAffinityChangeOnClientLeft() throws Exception {
         Ignite ig = startGrids(4);
 
@@ -212,6 +218,7 @@ public class CacheNoAffinityExchangeTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testNoAffinityChangeOnClientLeftWithMergedExchanges() throws 
Exception {
         System.setProperty(IgniteSystemProperties.IGNITE_EXCHANGE_MERGE_DELAY, 
"1000");
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheOffheapMapEntrySelfTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheOffheapMapEntrySelfTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheOffheapMapEntrySelfTest.java
index f2e12ad..fae80eb 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheOffheapMapEntrySelfTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheOffheapMapEntrySelfTest.java
@@ -25,6 +25,9 @@ import org.apache.ignite.internal.IgniteKernal;
 import 
org.apache.ignite.internal.processors.cache.distributed.dht.GridDhtCacheEntry;
 import 
org.apache.ignite.internal.processors.cache.distributed.near.GridNearCacheEntry;
 import org.apache.ignite.internal.processors.cache.local.GridLocalCacheEntry;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 import org.apache.ignite.testframework.MvccFeatureChecker;
 
 import static org.apache.ignite.cache.CacheAtomicityMode.ATOMIC;
@@ -37,6 +40,7 @@ import static org.apache.ignite.cache.CacheMode.REPLICATED;
 /**
  * Cache map entry self test.
  */
+@RunWith(JUnit4.class)
 public class CacheOffheapMapEntrySelfTest extends GridCacheAbstractSelfTest {
     /** {@inheritDoc} */
     @Override protected int gridCount() {
@@ -87,6 +91,7 @@ public class CacheOffheapMapEntrySelfTest extends 
GridCacheAbstractSelfTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testCacheMapEntry() throws Exception {
         checkCacheMapEntry(ATOMIC, LOCAL, GridLocalCacheEntry.class);
 
@@ -149,4 +154,4 @@ public class CacheOffheapMapEntrySelfTest extends 
GridCacheAbstractSelfTest {
             jcache.destroy();
         }
     }
-}
\ No newline at end of file
+}

Reply via email to