Skip to content

Commit

Permalink
ignite-sql-tests - enable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
S.Vladykin committed Feb 11, 2015
1 parent b64ab80 commit 4f05e4f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 18 deletions.
Expand Up @@ -240,14 +240,12 @@ private Set<UUID> affinityNodes(Iterable<Cache.Entry<Integer, Integer>> entries,
}

/**
* TODO
*
* JUnit.
*
* @throws Exception If failed.
*/
@SuppressWarnings({"TooBroadScope"})
public void _testMultiThreadedSwapUnswapString() throws Exception {
public void testMultiThreadedSwapUnswapString() throws Exception {
int threadCnt = 150;
final int keyCnt = 2000;
final int valCnt = 10000;
Expand Down Expand Up @@ -321,14 +319,12 @@ public void _testMultiThreadedSwapUnswapString() throws Exception {
}

/**
* TODO
*
* JUnit.
*
* @throws Exception If failed.
*/
@SuppressWarnings({"TooBroadScope"})
public void _testMultiThreadedSwapUnswapLong() throws Exception {
public void testMultiThreadedSwapUnswapLong() throws Exception {
int threadCnt = 150;
final int keyCnt = 2000;
final int valCnt = 10000;
Expand Down Expand Up @@ -401,14 +397,12 @@ public void _testMultiThreadedSwapUnswapLong() throws Exception {
}

/**
* TODO
*
* JUnit.
*
* @throws Exception If failed.
*/
@SuppressWarnings({"TooBroadScope"})
public void _testMultiThreadedSwapUnswapLongString() throws Exception {
public void testMultiThreadedSwapUnswapLongString() throws Exception {
int threadCnt = 150;
final int keyCnt = 2000;
final int valCnt = 10000;
Expand Down Expand Up @@ -481,12 +475,10 @@ public void _testMultiThreadedSwapUnswapLongString() throws Exception {
}

/**
* TODO
*
* @throws Exception If failed.
*/
@SuppressWarnings({"TooBroadScope"})
public void _testMultiThreadedSwapUnswapObject() throws Exception {
public void testMultiThreadedSwapUnswapObject() throws Exception {
int threadCnt = 50;
final int keyCnt = 4000;
final int valCnt = 10000;
Expand Down
Expand Up @@ -55,12 +55,12 @@ public static TestSuite suite() throws Exception {
suite.addTestSuite(IgniteCachePartitionedQueryMultiThreadedSelfTest.class);
suite.addTestSuite(IgniteCacheQueryIndexSelfTest.class);
suite.addTestSuite(GridCacheQueryInternalKeysSelfTest.class);
// suite.addTestSuite(IgniteCacheQueryMultiThreadedSelfTest.class);
// suite.addTestSuite(IgniteCacheQueryEvictsMultiThreadedSelfTest.class);
// suite.addTestSuite(IgniteCacheQueryOffheapMultiThreadedSelfTest.class);
// suite.addTestSuite(IgniteCacheQueryOffheapEvictsMultiThreadedSelfTest.class);
// suite.addTestSuite(IgniteCacheSqlQueryMultiThreadedSelfTest.class);
// suite.addTestSuite(IgniteCacheQueryNodeRestartSelfTest.class);
suite.addTestSuite(IgniteCacheQueryMultiThreadedSelfTest.class);
suite.addTestSuite(IgniteCacheQueryEvictsMultiThreadedSelfTest.class);
suite.addTestSuite(IgniteCacheQueryOffheapMultiThreadedSelfTest.class);
suite.addTestSuite(IgniteCacheQueryOffheapEvictsMultiThreadedSelfTest.class);
suite.addTestSuite(IgniteCacheSqlQueryMultiThreadedSelfTest.class);
suite.addTestSuite(IgniteCacheQueryNodeRestartSelfTest.class);
suite.addTestSuite(GridCacheReduceQueryMultithreadedSelfTest.class);
suite.addTestSuite(GridCacheCrossCacheQuerySelfTest.class);

Expand Down

0 comments on commit 4f05e4f

Please sign in to comment.