Repository: ignite Updated Branches: refs/heads/master c4883113d -> dda56bf66
ignite-4947: IgniteH2IndexingSpiTestSuite suite removed as it is empty - Fixes #2014. Signed-off-by: Alexey Goncharuk <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/dda56bf6 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/dda56bf6 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/dda56bf6 Branch: refs/heads/master Commit: dda56bf667b903c74a758deb6db83ea339e8deea Parents: c488311 Author: dspavlov <[email protected]> Authored: Thu Jun 1 12:22:05 2017 +0300 Committer: Alexey Goncharuk <[email protected]> Committed: Thu Jun 1 12:22:05 2017 +0300 ---------------------------------------------------------------------- .../testsuites/IgniteBinaryBasicTestSuite.java | 35 ------------------ .../IgniteBinaryObjectsCacheTestSuite3.java | 13 +++++++ .../IgniteH2IndexingSpiTestSuite.java | 37 -------------------- 3 files changed, 13 insertions(+), 72 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/dda56bf6/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteBinaryBasicTestSuite.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteBinaryBasicTestSuite.java b/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteBinaryBasicTestSuite.java deleted file mode 100644 index 68c463e..0000000 --- a/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteBinaryBasicTestSuite.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.apache.ignite.testsuites; - -import junit.framework.TestSuite; - -/** - * Basic test suite. - * May be removed soon as all tests were moved to {@link IgniteBasicTestSuite} - */ -@Deprecated -public class IgniteBinaryBasicTestSuite extends TestSuite { - /** - * @return Test suite. - * @throws Exception Thrown in case of the failure. - */ - public static TestSuite suite() throws Exception { - return new TestSuite("GridGain Binary Basic Test Suite: migrated to Ignite Basic Test Suite"); - } -} http://git-wip-us.apache.org/repos/asf/ignite/blob/dda56bf6/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteBinaryObjectsCacheTestSuite3.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteBinaryObjectsCacheTestSuite3.java b/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteBinaryObjectsCacheTestSuite3.java index 8d21580..0007813 100644 --- a/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteBinaryObjectsCacheTestSuite3.java +++ b/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteBinaryObjectsCacheTestSuite3.java @@ -23,6 +23,19 @@ import org.apache.ignite.internal.processors.cache.binary.GridCacheBinaryTransac import org.apache.ignite.testframework.config.GridTestProperties; /** + * IgniteBinaryObjectsCacheTestSuite3 is kept together with {@link IgniteCacheTestSuite3} + * for backward compatibility. + * + * In Ignite 2.0 tests + * - http://ci.ignite.apache.org/viewType.html?buildTypeId=Ignite20Tests_IgniteCache3 + * IgniteBinaryObjectsCacheTestSuite3 is used, + * + * and in Ignite tests + * http://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests_IgniteCache3 + * - IgniteCacheTestSuite3. + * And if someone runs old run configs then most test will be executed anyway. + * + * In future this suite may be merged with {@link IgniteCacheTestSuite3} * */ public class IgniteBinaryObjectsCacheTestSuite3 { http://git-wip-us.apache.org/repos/asf/ignite/blob/dda56bf6/modules/indexing/src/test/java/org/apache/ignite/testsuites/IgniteH2IndexingSpiTestSuite.java ---------------------------------------------------------------------- diff --git a/modules/indexing/src/test/java/org/apache/ignite/testsuites/IgniteH2IndexingSpiTestSuite.java b/modules/indexing/src/test/java/org/apache/ignite/testsuites/IgniteH2IndexingSpiTestSuite.java deleted file mode 100644 index ae3ab49..0000000 --- a/modules/indexing/src/test/java/org/apache/ignite/testsuites/IgniteH2IndexingSpiTestSuite.java +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.apache.ignite.testsuites; - -import junit.framework.TestSuite; - -/** - * H2 indexing SPI tests. - */ -public class IgniteH2IndexingSpiTestSuite extends TestSuite { - /** - * @return Test suite. - * @throws Exception Thrown in case of the failure. - */ - public static TestSuite suite() throws Exception { - TestSuite suite = new TestSuite("H2 Indexing SPI Test Suite"); - - // No-op. - - return suite; - } -} \ No newline at end of file
