Repository: incubator-ignite Updated Branches: refs/heads/ignite-54-55 1ecb025e5 -> eb46cbbbe
#IGNITE-106: Add empty constructor for IgniteCacheProxy. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/8c83e3ac Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/8c83e3ac Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/8c83e3ac Branch: refs/heads/ignite-54-55 Commit: 8c83e3ac84855f81488c579f0261fbb37a935db5 Parents: 5668a8b Author: ivasilinets <ivasilin...@gridgain.com> Authored: Mon Feb 2 16:09:05 2015 +0300 Committer: ivasilinets <ivasilin...@gridgain.com> Committed: Mon Feb 2 16:09:05 2015 +0300 ---------------------------------------------------------------------- .../GridCacheExamplesMultiNodeSelfTest.java | 6 +- .../examples/GridCacheExamplesSelfTest.java | 70 ++++++++++---------- .../testsuites/IgniteExamplesSelfTestSuite.java | 4 +- 3 files changed, 40 insertions(+), 40 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/8c83e3ac/examples/src/test/java/org/apache/ignite/examples/GridCacheExamplesMultiNodeSelfTest.java ---------------------------------------------------------------------- diff --git a/examples/src/test/java/org/apache/ignite/examples/GridCacheExamplesMultiNodeSelfTest.java b/examples/src/test/java/org/apache/ignite/examples/GridCacheExamplesMultiNodeSelfTest.java index 927a414..71621e2 100644 --- a/examples/src/test/java/org/apache/ignite/examples/GridCacheExamplesMultiNodeSelfTest.java +++ b/examples/src/test/java/org/apache/ignite/examples/GridCacheExamplesMultiNodeSelfTest.java @@ -36,13 +36,13 @@ public class GridCacheExamplesMultiNodeSelfTest extends GridCacheExamplesSelfTes return 10 * 60 * 1000; } - /* *//** {@inheritDoc} *//* + /** {@inheritDoc} */ @Override public void testGridCacheStoreExample() throws Exception { // No-op. } - *//** {@inheritDoc} *//* + /** {@inheritDoc} */ @Override public void testGridCacheStoreLoaderExample() throws Exception { // No-op. - }*/ + } } http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/8c83e3ac/examples/src/test/java/org/apache/ignite/examples/GridCacheExamplesSelfTest.java ---------------------------------------------------------------------- diff --git a/examples/src/test/java/org/apache/ignite/examples/GridCacheExamplesSelfTest.java b/examples/src/test/java/org/apache/ignite/examples/GridCacheExamplesSelfTest.java index 6582060..129b8a5 100644 --- a/examples/src/test/java/org/apache/ignite/examples/GridCacheExamplesSelfTest.java +++ b/examples/src/test/java/org/apache/ignite/examples/GridCacheExamplesSelfTest.java @@ -34,122 +34,122 @@ public class GridCacheExamplesSelfTest extends GridAbstractExamplesTest { CacheAffinityExample.main(EMPTY_ARGS); } - /* *//** + /** * @throws Exception If failed. - *//* + */ public void testGridCacheAtomicLongExample() throws Exception { CacheAtomicLongExample.main(EMPTY_ARGS); } - *//** + /** * @throws Exception If failed. - *//* + */ public void testGridCacheAtomicReferenceExample() throws Exception { CacheAtomicReferenceExample.main(EMPTY_ARGS); } - *//** + /** * @throws Exception If failed. - *//* + */ public void testGridCacheAtomicSequenceExample() throws Exception { CacheAtomicSequenceExample.main(EMPTY_ARGS); } - *//** + /** * @throws Exception If failed. - *//* + */ public void testGridCacheAtomicStampedExample() throws Exception { CacheAtomicStampedExample.main(EMPTY_ARGS); } - *//** + /** * @throws Exception If failed. - *//* + */ public void testGridCacheCountDownLatchExample() throws Exception { CacheCountDownLatchExample.main(EMPTY_ARGS); } - *//** + /** * @throws Exception If failed. - *//* + */ public void testGridCacheQueueExample() throws Exception { CacheQueueExample.main(EMPTY_ARGS); } - *//** + /** * @throws Exception If failed. - *//* + */ public void testGridCacheSetExample() throws Exception { CacheSetExample.main(EMPTY_ARGS); } - *//** + /** * @throws Exception If failed. - *//* + */ public void testGridCacheStoreExample() throws Exception { CacheStoreExample.main(EMPTY_ARGS); } - *//** + /** * @throws Exception If failed. - *//* + */ public void testGridCacheQueryExample() throws Exception { CacheQueryExample.main(EMPTY_ARGS); } - *//** + /** * @throws Exception If failed. - *//* + */ public void testGridCacheApiExample() throws Exception { CacheApiExample.main(EMPTY_ARGS); } - *//** + /** * @throws Exception If failed. - *//* + */ public void testGridCacheTransactionExample() throws Exception { CacheTransactionExample.main(EMPTY_ARGS); } - *//** + /** * @throws Exception If failed. - *//* + */ public void testGridCacheDataLoaderExample() throws Exception { CacheDataLoaderExample.main(EMPTY_ARGS); } - *//** + /** * @throws Exception If failed. - *//* + */ public void testGridPopularNumbersRealTimeExample() throws Exception { CachePopularNumbersExample.main(EMPTY_ARGS); } - *//** + /** * @throws Exception If failed. - *//* + */ public void testGridCacheStoreLoaderExample() throws Exception { CacheStoreLoadDataExample.main(EMPTY_ARGS); } - *//** + /** * @throws Exception If failed. - *//* + */ public void testGridCachePutGetExample() throws Exception { CachePutGetExample.main(EMPTY_ARGS); } - *//** + /** * @throws Exception If failed. - *//* + */ public void testGridSnowflakeSchemaExample() throws Exception { CacheStarSchemaExample.main(EMPTY_ARGS); } - *//** + /** * @throws Exception If failed. - *//* + */ public void testGridCacheContinuousQueryExample() throws Exception { CacheContinuousQueryExample.main(EMPTY_ARGS); - }*/ + } } http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/8c83e3ac/examples/src/test/java/org/apache/ignite/testsuites/IgniteExamplesSelfTestSuite.java ---------------------------------------------------------------------- diff --git a/examples/src/test/java/org/apache/ignite/testsuites/IgniteExamplesSelfTestSuite.java b/examples/src/test/java/org/apache/ignite/testsuites/IgniteExamplesSelfTestSuite.java index 1db0554..7d3bb12 100644 --- a/examples/src/test/java/org/apache/ignite/testsuites/IgniteExamplesSelfTestSuite.java +++ b/examples/src/test/java/org/apache/ignite/testsuites/IgniteExamplesSelfTestSuite.java @@ -40,7 +40,7 @@ public class IgniteExamplesSelfTestSuite extends TestSuite { TestSuite suite = new TestSuite("Ignite Examples Test Suite"); suite.addTest(new TestSuite(GridCacheExamplesSelfTest.class)); - /*suite.addTest(new TestSuite(GridBasicExamplesSelfTest.class)); + suite.addTest(new TestSuite(GridBasicExamplesSelfTest.class)); suite.addTest(new TestSuite(GridContinuationExamplesSelfTest.class)); suite.addTest(new TestSuite(GridContinuousMapperExamplesSelfTest.class)); suite.addTest(new TestSuite(GridDeploymentExamplesSelfTest.class)); @@ -67,7 +67,7 @@ public class IgniteExamplesSelfTestSuite extends TestSuite { suite.addTest(new TestSuite(GridTaskExamplesMultiNodeSelfTest.class)); suite.addTest(new TestSuite(GridMemcacheRestExamplesMultiNodeSelfTest.class)); suite.addTest(new TestSuite(GridMonteCarloExamplesMultiNodeSelfTest.class)); - suite.addTest(new TestSuite(GridHibernateL2CacheExampleMultiNodeSelfTest.class));*/ + suite.addTest(new TestSuite(GridHibernateL2CacheExampleMultiNodeSelfTest.class)); return suite; }