Repository: ignite Updated Branches: refs/heads/master a16eb0b0d -> 777011896
IGNITE-9211 Remove Java 8 examples suite since we always run on Java 8+. - Fixes #5603. Signed-off-by: Dmitriy Pavlov <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/77701189 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/77701189 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/77701189 Branch: refs/heads/master Commit: 777011896ce5866a67d9d56482e73df1dae5a79c Parents: a16eb0b Author: Ilya Kasnacheev <[email protected]> Authored: Thu Dec 13 16:38:27 2018 +0300 Committer: Dmitriy Pavlov <[email protected]> Committed: Thu Dec 13 16:38:27 2018 +0300 ---------------------------------------------------------------------- .../IgniteExamplesJ8SelfTestSuite.java | 81 -------------------- 1 file changed, 81 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/77701189/examples/src/test/java/org/apache/ignite/testsuites/IgniteExamplesJ8SelfTestSuite.java ---------------------------------------------------------------------- diff --git a/examples/src/test/java/org/apache/ignite/testsuites/IgniteExamplesJ8SelfTestSuite.java b/examples/src/test/java/org/apache/ignite/testsuites/IgniteExamplesJ8SelfTestSuite.java deleted file mode 100644 index f281ec5..0000000 --- a/examples/src/test/java/org/apache/ignite/testsuites/IgniteExamplesJ8SelfTestSuite.java +++ /dev/null @@ -1,81 +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.JUnit4TestAdapter; -import junit.framework.TestSuite; -import org.apache.ignite.examples.BasicExamplesMultiNodeSelfTest; -import org.apache.ignite.examples.BasicExamplesSelfTest; -import org.apache.ignite.examples.CacheExamplesMultiNodeSelfTest; -import org.apache.ignite.examples.CacheExamplesSelfTest; -import org.apache.ignite.examples.EventsExamplesMultiNodeSelfTest; -import org.apache.ignite.examples.EventsExamplesSelfTest; -import org.apache.ignite.examples.MessagingExamplesSelfTest; -import org.apache.ignite.testframework.GridTestUtils; - -import static org.apache.ignite.IgniteSystemProperties.IGNITE_OVERRIDE_MCAST_GRP; - -/** - * Examples test suite. - * <p> - * Contains only Spring ignite examples tests. - */ -public class IgniteExamplesJ8SelfTestSuite extends TestSuite { - /** - * @return Suite. - * @throws Exception If failed. - */ - public static TestSuite suite() throws Exception { - System.setProperty(IGNITE_OVERRIDE_MCAST_GRP, - GridTestUtils.getNextMulticastGroup(IgniteExamplesJ8SelfTestSuite.class)); - - TestSuite suite = new TestSuite("Ignite Examples Test Suite"); - - suite.addTest(new JUnit4TestAdapter(CacheExamplesSelfTest.class)); - suite.addTest(new JUnit4TestAdapter(BasicExamplesSelfTest.class)); - -// suite.addTest(new JUnit4TestAdapter(ContinuationExamplesSelfTest.class)); -// suite.addTest(new JUnit4TestAdapter(ContinuousMapperExamplesSelfTest.class)); -// suite.addTest(new JUnit4TestAdapter(DeploymentExamplesSelfTest.class)); - suite.addTest(new JUnit4TestAdapter(EventsExamplesSelfTest.class)); -// suite.addTest(new JUnit4TestAdapter(LifecycleExamplesSelfTest.class)); - suite.addTest(new JUnit4TestAdapter(MessagingExamplesSelfTest.class)); -// suite.addTest(new JUnit4TestAdapter(MemcacheRestExamplesSelfTest.class)); -// suite.addTest(new JUnit4TestAdapter(MonteCarloExamplesSelfTest.class)); -// suite.addTest(new JUnit4TestAdapter(TaskExamplesSelfTest.class)); -// suite.addTest(new JUnit4TestAdapter(SpringBeanExamplesSelfTest.class)); -// suite.addTest(new JUnit4TestAdapter(IgfsExamplesSelfTest.class)); -// suite.addTest(new JUnit4TestAdapter(CheckpointExamplesSelfTest.class)); -// suite.addTest(new JUnit4TestAdapter(HibernateL2CacheExampleSelfTest.class)); -// suite.addTest(new JUnit4TestAdapter(ClusterGroupExampleSelfTest.class)); - - // Multi-node. - suite.addTest(new JUnit4TestAdapter(CacheExamplesMultiNodeSelfTest.class)); - suite.addTest(new JUnit4TestAdapter(BasicExamplesMultiNodeSelfTest.class)); -// suite.addTest(new JUnit4TestAdapter(ContinuationExamplesMultiNodeSelfTest.class)); -// suite.addTest(new JUnit4TestAdapter(ContinuousMapperExamplesMultiNodeSelfTest.class)); -// suite.addTest(new JUnit4TestAdapter(DeploymentExamplesMultiNodeSelfTest.class)); - suite.addTest(new JUnit4TestAdapter(EventsExamplesMultiNodeSelfTest.class)); -// suite.addTest(new JUnit4TestAdapter(TaskExamplesMultiNodeSelfTest.class)); -// suite.addTest(new JUnit4TestAdapter(MemcacheRestExamplesMultiNodeSelfTest.class)); -// suite.addTest(new JUnit4TestAdapter(MonteCarloExamplesMultiNodeSelfTest.class)); -// suite.addTest(new JUnit4TestAdapter(HibernateL2CacheExampleMultiNodeSelfTest.class)); - - return suite; - } -}
