From e974f55eae5eb87c671435e9a6397d3ce05c0be5 Mon Sep 17 00:00:00 2001 From: Gary Russell Date: Thu, 12 Feb 2015 11:56:23 -0500 Subject: [PATCH] Remove IgnoredTestSuite in JMX https://build.spring.io/browse/INT-B41-204/test/#ignored-tests Inflates the 'ignored tests' count in Bamboo. --- .../integration/IgnoredTestSuite.java | 46 ------------------- 1 file changed, 46 deletions(-) delete mode 100644 spring-integration-jmx/src/test/java/org/springframework/integration/IgnoredTestSuite.java diff --git a/spring-integration-jmx/src/test/java/org/springframework/integration/IgnoredTestSuite.java b/spring-integration-jmx/src/test/java/org/springframework/integration/IgnoredTestSuite.java deleted file mode 100644 index 8222468118..0000000000 --- a/spring-integration-jmx/src/test/java/org/springframework/integration/IgnoredTestSuite.java +++ /dev/null @@ -1,46 +0,0 @@ -package org.springframework.integration; - -import org.junit.Ignore; -import org.junit.runner.RunWith; -import org.junit.runners.Suite; -import org.junit.runners.Suite.SuiteClasses; -import org.springframework.integration.jmx.AttributePollingMessageSourceTests; -import org.springframework.integration.jmx.NotificationListeningMessageProducerTests; -import org.springframework.integration.jmx.OperationInvokingMessageHandlerTests; -import org.springframework.integration.jmx.config.NotificationListeningChannelAdapterParserTests; -import org.springframework.integration.jmx.config.OperationInvokingChannelAdapterParserTests; -import org.springframework.integration.jmx.config.OperationInvokingOutboundGatewayTests; -import org.springframework.integration.monitor.ExponentialMovingAverageRatioTests; -import org.springframework.integration.monitor.ExponentialMovingAverageTests; -import org.springframework.integration.monitor.HandlerMonitoringIntegrationTests; -import org.springframework.integration.monitor.MessageChannelsMonitorIntegrationTests; - -/* - * Copyright 2009-2010 the original author or authors. - * - * Licensed 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. - */ - -/** - * A test suite that is ignored, but can be resurrected to help debug ordering issues in tests. - * - * @author Dave Syer - * - */ -@RunWith(Suite.class) -@SuiteClasses(value = { OperationInvokingMessageHandlerTests.class, ExponentialMovingAverageTests.class, - OperationInvokingChannelAdapterParserTests.class, HandlerMonitoringIntegrationTests.class, - NotificationListeningMessageProducerTests.class, OperationInvokingOutboundGatewayTests.class, - NotificationListeningChannelAdapterParserTests.class, ExponentialMovingAverageRatioTests.class, - AttributePollingMessageSourceTests.class, MessageChannelsMonitorIntegrationTests.class }) -@Ignore -public class IgnoredTestSuite { - -}