Skip to content

Commit

Permalink
IGNITE-6669: Renamed test by code style.
Browse files Browse the repository at this point in the history
Signed-off-by: nikolay_tikhonov <ntikhonov@gridgain.com>
  • Loading branch information
sk0x50 authored and niktikhonov committed Nov 10, 2017
1 parent 291b166 commit c11fc41
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
Expand Up @@ -25,7 +25,7 @@
* This class tests that redundant calls of {@link CacheStoreSessionListener#onSessionStart(CacheStoreSession)}
* and {@link CacheStoreSessionListener#onSessionEnd(CacheStoreSession, boolean)} are not executed.
*/
public class CacheStoreListenerRWThroughDisabledAtomicCache extends CacheStoreSessionListenerReadWriteThroughDisabled {
public class CacheStoreListenerRWThroughDisabledAtomicCacheTest extends CacheStoreSessionListenerReadWriteThroughDisabledTest {
/** {@inheritDoc} */
@Override protected CacheAtomicityMode atomicityMode() {
return ATOMIC;
Expand Down
Expand Up @@ -35,7 +35,7 @@
* This class tests that redundant calls of {@link CacheStoreSessionListener#onSessionStart(CacheStoreSession)}
* and {@link CacheStoreSessionListener#onSessionEnd(CacheStoreSession, boolean)} are not executed.
*/
public class CacheStoreListenerRWThroughDisabledTransactionalCache extends CacheStoreSessionListenerReadWriteThroughDisabled {
public class CacheStoreListenerRWThroughDisabledTransactionalCacheTest extends CacheStoreSessionListenerReadWriteThroughDisabledTest {
/** {@inheritDoc} */
@Override protected CacheAtomicityMode atomicityMode() {
return TRANSACTIONAL;
Expand Down
Expand Up @@ -44,7 +44,7 @@
* This class tests that redundant calls of {@link CacheStoreSessionListener#onSessionStart(CacheStoreSession)}
* and {@link CacheStoreSessionListener#onSessionEnd(CacheStoreSession, boolean)} are not executed.
*/
public abstract class CacheStoreSessionListenerReadWriteThroughDisabled extends GridCacheAbstractSelfTest {
public abstract class CacheStoreSessionListenerReadWriteThroughDisabledTest extends GridCacheAbstractSelfTest {
/** {@inheritDoc} */
protected int gridCount() {
return 2;
Expand Down
Expand Up @@ -48,7 +48,7 @@
* and {@link CacheStoreSessionListener#onSessionEnd(CacheStoreSession, boolean)} are executed from
* {@link GridCacheWriteBehindStore} only.
*/
public class CacheStoreSessionListenerWriteBehindEnabled extends GridCacheAbstractSelfTest {
public class CacheStoreSessionListenerWriteBehindEnabledTest extends GridCacheAbstractSelfTest {
/** */
protected final static int CNT = 100;

Expand Down
Expand Up @@ -18,9 +18,9 @@
package org.apache.ignite.testsuites;

import junit.framework.TestSuite;
import org.apache.ignite.cache.store.CacheStoreListenerRWThroughDisabledAtomicCache;
import org.apache.ignite.cache.store.CacheStoreListenerRWThroughDisabledTransactionalCache;
import org.apache.ignite.cache.store.CacheStoreSessionListenerWriteBehindEnabled;
import org.apache.ignite.cache.store.CacheStoreListenerRWThroughDisabledAtomicCacheTest;
import org.apache.ignite.cache.store.CacheStoreListenerRWThroughDisabledTransactionalCacheTest;
import org.apache.ignite.cache.store.CacheStoreSessionListenerWriteBehindEnabledTest;
import org.apache.ignite.cache.store.jdbc.CacheJdbcStoreSessionListenerSelfTest;
import org.apache.ignite.internal.processors.GridCacheTxLoadFromStoreOnLockSelfTest;
import org.apache.ignite.internal.processors.cache.CacheClientStoreSelfTest;
Expand Down Expand Up @@ -279,9 +279,9 @@ public static TestSuite suite() throws Exception {
suite.addTestSuite(CacheOffheapMapEntrySelfTest.class);

suite.addTestSuite(CacheJdbcStoreSessionListenerSelfTest.class);
suite.addTestSuite(CacheStoreListenerRWThroughDisabledAtomicCache.class);
suite.addTestSuite(CacheStoreListenerRWThroughDisabledTransactionalCache.class);
suite.addTestSuite(CacheStoreSessionListenerWriteBehindEnabled.class);
suite.addTestSuite(CacheStoreListenerRWThroughDisabledAtomicCacheTest.class);
suite.addTestSuite(CacheStoreListenerRWThroughDisabledTransactionalCacheTest.class);
suite.addTestSuite(CacheStoreSessionListenerWriteBehindEnabledTest.class);

suite.addTestSuite(CacheClientStoreSelfTest.class);
suite.addTestSuite(CacheStoreUsageMultinodeStaticStartAtomicTest.class);
Expand Down

0 comments on commit c11fc41

Please sign in to comment.