Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 82255200BB2 for ; Sat, 29 Oct 2016 19:13:26 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 80F21160AE3; Sat, 29 Oct 2016 17:13:26 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id BA60B160B00 for ; Sat, 29 Oct 2016 19:13:25 +0200 (CEST) Received: (qmail 48394 invoked by uid 500); 29 Oct 2016 17:13:25 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 48328 invoked by uid 99); 29 Oct 2016 17:13:24 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Oct 2016 17:13:24 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 9ED72E0362; Sat, 29 Oct 2016 17:13:24 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: davsclaus@apache.org To: commits@camel.apache.org Date: Sat, 29 Oct 2016 17:13:25 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/3] camel git commit: Deleted flaky test archived-at: Sat, 29 Oct 2016 17:13:26 -0000 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 Authored: Sat Oct 29 19:08:32 2016 +0200 Committer: Claus Ibsen 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