Repository: camel Updated Branches: refs/heads/master 3cf0fa639 -> 037da91ea
[CAMEL-11109] Removing test again as this must be tested on the activmq-camel component not the camel-jms component Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/037da91e Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/037da91e Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/037da91e Branch: refs/heads/master Commit: 037da91eaa3534c402dfbb38d1be29d31829ca6f Parents: 3cf0fa6 Author: Christian Schneider <ch...@die-schneider.net> Authored: Wed Apr 5 14:05:37 2017 +0200 Committer: Christian Schneider <ch...@die-schneider.net> Committed: Wed Apr 5 14:08:49 2017 +0200 ---------------------------------------------------------------------- .../jms/issues/JmsExclusiveConsumerTest.java | 45 -------------------- 1 file changed, 45 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/037da91e/components/camel-jms/src/test/java/org/apache/camel/component/jms/issues/JmsExclusiveConsumerTest.java ---------------------------------------------------------------------- diff --git a/components/camel-jms/src/test/java/org/apache/camel/component/jms/issues/JmsExclusiveConsumerTest.java b/components/camel-jms/src/test/java/org/apache/camel/component/jms/issues/JmsExclusiveConsumerTest.java deleted file mode 100644 index bbf1ace..0000000 --- a/components/camel-jms/src/test/java/org/apache/camel/component/jms/issues/JmsExclusiveConsumerTest.java +++ /dev/null @@ -1,45 +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.camel.component.jms.issues; - -import org.apache.camel.FailedToCreateRouteException; -import org.apache.camel.builder.RouteBuilder; -import org.apache.camel.component.jms.JmsComponent; -import org.apache.camel.impl.DefaultCamelContext; -import org.junit.Test; - -/** - * See https://issues.apache.org/jira/browse/CAMEL-11109 - */ -public class JmsExclusiveConsumerTest { - - /** - * @throws Exception as long as the issue is present the route creation will fail - */ - @Test(expected=FailedToCreateRouteException.class) - public void testExclusiveConsumer() throws Exception { - DefaultCamelContext context = new DefaultCamelContext(); - context.addComponent("activemq", JmsComponent.jmsComponent()); - context.addRoutes(new RouteBuilder() { - public void configure() throws Exception { - from("activemq:queue:in?destination.consumer.exclusive=true").to("mock:result"); - } - }); - context.start(); - } - -}