You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/10/24 11:23:03 UTC

[camel] branch master updated: Removed generated stuff: it wasn't rendered correctly

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 38d01b1  Removed generated stuff: it wasn't rendered correctly
38d01b1 is described below

commit 38d01b11ac18e1ff042f3a4ee50609b2f7afe28e
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Oct 24 13:22:30 2019 +0200

    Removed generated stuff: it wasn't rendered correctly
---
 .../camel/component/seda/SedaAsyncRouteTest.java   | 58 ----------------------
 1 file changed, 58 deletions(-)

diff --git a/docs/components/modules/ROOT/examples/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaAsyncRouteTest.java b/docs/components/modules/ROOT/examples/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaAsyncRouteTest.java
deleted file mode 100644
index a21c0f1..0000000
--- a/docs/components/modules/ROOT/examples/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaAsyncRouteTest.java
+++ /dev/null
@@ -1,58 +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.seda;
-
-import org.apache.camel.ContextTestSupport;
-import org.apache.camel.builder.RouteBuilder;
-import org.apache.camel.component.mock.MockEndpoint;
-import org.junit.Test;
-
-/**
- * Unit test based on user forum request.
- */
-public class SedaAsyncRouteTest extends ContextTestSupport {
-
-    @Test
-    public void testSendAsync() throws Exception {
-        MockEndpoint mock = getMockEndpoint("mock:result");
-        mock.expectedBodiesReceived("Hello World");
-
-        // START SNIPPET: e2
-        Object out = template.requestBody("direct:start", "Hello World");
-        assertEquals("OK", out);
-        // END SNIPPET: e2
-
-        assertMockEndpointsSatisfied();
-    }
-
-    @Override
-    protected RouteBuilder createRouteBuilder() throws Exception {
-        return new RouteBuilder() {
-            // START SNIPPET: e1
-            public void configure() throws Exception {
-                from("direct:start")
-                    // send it to the seda queue that is async
-                    .to("seda:next")
-                    // return a constant response
-                    .transform(constant("OK"));
-
-                from("seda:next").to("mock:result");
-            }
-            // END SNIPPET: e1
-        };
-    }
-}