Deleted flaky test
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/61f7bf70 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/61f7bf70 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/61f7bf70 Branch: refs/heads/master Commit: 61f7bf70852c95e9664e7a0dbf06ab36999eb198 Parents: 6cb5b70 Author: Claus Ibsen <davscl...@apache.org> Authored: Sat Oct 29 19:08:32 2016 +0200 Committer: Claus Ibsen <davscl...@apache.org> Committed: Sat Oct 29 19:08:32 2016 +0200 ---------------------------------------------------------------------- .../DuplicatedRouteIdTest.java | 61 -------------------- 1 file changed, 61 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/61f7bf70/components/camel-spring-boot/src/test/java/org/apache/camel/spring/boot/duplicatedrouteid/DuplicatedRouteIdTest.java ---------------------------------------------------------------------- diff --git a/components/camel-spring-boot/src/test/java/org/apache/camel/spring/boot/duplicatedrouteid/DuplicatedRouteIdTest.java b/components/camel-spring-boot/src/test/java/org/apache/camel/spring/boot/duplicatedrouteid/DuplicatedRouteIdTest.java deleted file mode 100644 index 1d6185f..0000000 --- a/components/camel-spring-boot/src/test/java/org/apache/camel/spring/boot/duplicatedrouteid/DuplicatedRouteIdTest.java +++ /dev/null @@ -1,61 +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.spring.boot.duplicatedrouteid; - -import org.apache.camel.RoutesBuilder; -import org.apache.camel.builder.RouteBuilder; -import org.apache.camel.spring.boot.CamelSpringBootInitializationException; -import org.junit.Assert; -import org.junit.Test; -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.context.annotation.Bean; - -public class DuplicatedRouteIdTest extends Assert { - - @Test(expected = CamelSpringBootInitializationException.class) - public void shouldDetectDuplicatedRouteId() { - new SpringApplication(DuplicatedRouteIdTestConfiguration.class).run(); - } - -} - -@SpringBootApplication -class DuplicatedRouteIdTestConfiguration { - - @Bean - RoutesBuilder firstRoute() { - return new RouteBuilder() { - @Override - public void configure() throws Exception { - from("seda:first").routeId("foo").to("mock:first"); - } - }; - } - - @Bean - RoutesBuilder secondRoute() { - return new RouteBuilder() { - @Override - public void configure() throws Exception { - from("seda:second").routeId("foo").to("mock:second"); - } - }; - } - - -} \ No newline at end of file