Repository: camel Updated Branches: refs/heads/master 7a26b5bae -> ad3e5d53f
CAMEL-9759: camel-zipkin - Instrument Camel. Work in progress. Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/ad3e5d53 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/ad3e5d53 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/ad3e5d53 Branch: refs/heads/master Commit: ad3e5d53f81302e06a981c2033ce9e3f4379417b Parents: 7a26b5b Author: Claus Ibsen <davscl...@apache.org> Authored: Wed Mar 30 11:14:38 2016 +0200 Committer: Claus Ibsen <davscl...@apache.org> Committed: Wed Mar 30 11:18:46 2016 +0200 ---------------------------------------------------------------------- examples/README.md | 1 + .../camel/ZipkinCamelApplicationTest.java | 47 -------------------- 2 files changed, 1 insertion(+), 47 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/ad3e5d53/examples/README.md ---------------------------------------------------------------------- diff --git a/examples/README.md b/examples/README.md index 657c861..4edde7e 100644 --- a/examples/README.md +++ b/examples/README.md @@ -102,6 +102,7 @@ All examples have been sort by type/category * [camel-example-bam](camel-example-bam/README.md) * [camel-example-management](camel-example-management/README.md) * [camel-example-splunk](camel-example-splunk/README.md) +* [camel-example-zipkin](camel-example-zipkin/README.md) ##### Miscellaneous http://git-wip-us.apache.org/repos/asf/camel/blob/ad3e5d53/examples/camel-example-zipkin/src/test/java/sample/camel/ZipkinCamelApplicationTest.java ---------------------------------------------------------------------- diff --git a/examples/camel-example-zipkin/src/test/java/sample/camel/ZipkinCamelApplicationTest.java b/examples/camel-example-zipkin/src/test/java/sample/camel/ZipkinCamelApplicationTest.java deleted file mode 100644 index 4f01694..0000000 --- a/examples/camel-example-zipkin/src/test/java/sample/camel/ZipkinCamelApplicationTest.java +++ /dev/null @@ -1,47 +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 sample.camel; - -import java.util.concurrent.TimeUnit; - -import org.apache.camel.CamelContext; -import org.apache.camel.builder.NotifyBuilder; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.boot.test.SpringApplicationConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; - -import static org.junit.Assert.assertTrue; - -@RunWith(SpringJUnit4ClassRunner.class) -@SpringApplicationConfiguration(ZipkinCamelApplication.class) -public class ZipkinCamelApplicationTest { - - @Autowired - private CamelContext camelContext; - - @Test - public void shouldProduceMessages() throws Exception { - // we expect that one or more messages is automatic done by the Camel - // route as it uses a timer to trigger - NotifyBuilder notify = new NotifyBuilder(camelContext).whenDone(1).create(); - - assertTrue(notify.matches(10, TimeUnit.SECONDS)); - } - -}