timoninmaxim commented on a change in pull request #8367: URL: https://github.com/apache/ignite/pull/8367#discussion_r563713671
########## File path: modules/core/src/test/java/org/apache/ignite/testsuites/CoreIgniteSpringTestSuite.java ########## @@ -0,0 +1,35 @@ +/* + * 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 org.apache.ignite.internal.processors.cache.distributed.dht.GridCacheDhtMultiBackupTest; +import org.apache.ignite.startup.cmdline.GridCommandLineLoaderTest; +import org.junit.runner.RunWith; +import org.junit.runners.Suite; + +/** + * Spring tests. + */ +@RunWith(Suite.class) [email protected]({ + GridCommandLineLoaderTest.class, + + GridCacheDhtMultiBackupTest.class +}) +public class CoreIgniteSpringTestSuite { Review comment: Now there is no need to moving test and suites. Now check aggregates test and suites info over all modules and then checks aggregation result. ########## File path: modules/indexing/src/test/java/org/apache/ignite/testsuites/IgniteCacheQuerySelfTestSuite3.java ########## @@ -48,34 +26,7 @@ */ @RunWith(Suite.class) @Suite.SuiteClasses({ - CacheContinuousQueryBufferLimitTest.class, - - GridCacheContinuousQueryNodesFilteringTest.class, - GridCacheContinuousQueryPartitionTxOneNodeTest.class, - CacheContinuousWithTransformerReplicatedSelfTest.class, - CacheContinuousWithTransformerClientSelfTest.class, - CacheContinuousQueryExecuteInPrimaryTest.class, - IgniteCacheContinuousQueryNoUnsubscribeTest.class, - - ClientReconnectContinuousQueryTest.class, - IgniteCacheContinuousQueryReconnectTest.class, - IgniteCacheContinuousQueryClientTxReconnectTest.class, - IgniteCacheContinuousQueryClientReconnectTest.class, - - GridCacheContinuousQueryAtomicSelfTest.class, - GridCacheContinuousQueryAtomicNearEnabledSelfTest.class, - GridCacheContinuousQueryPartitionedSelfTest.class, - GridCacheContinuousQueryReplicatedSelfTest.class, - - CacheContinuousQueryFactoryAsyncFilterRandomOperationTest.class, - CacheContinuousBatchForceServerModeAckTest.class, - ContinuousQueryReassignmentTest.class, - CacheContinuousQueryConcurrentPartitionUpdateTest.class, - - CacheContinuousQueryCounterPartitionedAtomicTest.class, - CacheContinuousQueryCounterPartitionedTxTest.class, - CacheContinuousQueryCounterReplicatedAtomicTest.class, - CacheContinuousQueryCounterReplicatedTxTest.class + CoreIgniteCacheQuerySelfTestSuite3.class Review comment: Back test suite to original state. ########## File path: modules/core/src/test/java/org/apache/ignite/client/CoreClientTestSuite.java ########## @@ -0,0 +1,66 @@ +/* + * 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.client; + +import org.apache.ignite.internal.IgniteClientFailuresTest; +import org.apache.ignite.internal.client.thin.CacheAsyncTest; +import org.apache.ignite.internal.client.thin.ClusterApiTest; +import org.apache.ignite.internal.client.thin.ClusterGroupTest; +import org.apache.ignite.internal.client.thin.ComputeTaskTest; +import org.apache.ignite.internal.client.thin.ReliableChannelTest; +import org.apache.ignite.internal.client.thin.ServicesTest; +import org.apache.ignite.internal.client.thin.ThinClientPartitionAwarenessDiscoveryTest; +import org.apache.ignite.internal.client.thin.ThinClientPartitionAwarenessResourceReleaseTest; +import org.apache.ignite.internal.client.thin.ThinClientPartitionAwarenessStableTopologyTest; +import org.apache.ignite.internal.client.thin.ThinClientPartitionAwarenessUnstableTopologyTest; +import org.junit.runner.RunWith; +import org.junit.runners.Suite; + +/** + * Tests for Java thin client. + */ +@RunWith(Suite.class) [email protected]({ + ClientConfigurationTest.class, + ClientCacheConfigurationTest.class, + FunctionalTest.class, + IgniteBinaryTest.class, + LoadTest.class, + ReliabilityTest.class, + ReliabilityTestAsync.class, + ReliabilityTestPartitionAware.class, + ReliabilityTestPartitionAwareAsync.class, + SslParametersTest.class, + ConnectionTest.class, + ConnectToStartingNodeTest.class, + AsyncChannelTest.class, + ComputeTaskTest.class, + ClusterApiTest.class, + ClusterGroupTest.class, + ServicesTest.class, + ThinClientPartitionAwarenessStableTopologyTest.class, + ThinClientPartitionAwarenessUnstableTopologyTest.class, + ThinClientPartitionAwarenessResourceReleaseTest.class, + ThinClientPartitionAwarenessDiscoveryTest.class, + CacheAsyncTest.class, + ReliableChannelTest.class, + IgniteClientFailuresTest.class +}) +public class CoreClientTestSuite { Review comment: Removed. ClientTestSuite is restored. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
