You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2022/06/29 13:39:59 UTC

[camel] branch main updated: (chores) camel-jms: renamed manual test

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

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


The following commit(s) were added to refs/heads/main by this push:
     new d9e56a80382 (chores) camel-jms: renamed manual test
d9e56a80382 is described below

commit d9e56a8038284759b1706bfb12b0a8705afc5f9a
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Wed Jun 29 14:26:28 2022 +0200

    (chores) camel-jms: renamed manual test
---
 .../temp/{JmsReconnectTest.java => JmsReconnectManualTest.java}    | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/components/camel-jms/src/test/java/org/apache/camel/component/jms/temp/JmsReconnectTest.java b/components/camel-jms/src/test/java/org/apache/camel/component/jms/temp/JmsReconnectManualTest.java
similarity index 95%
rename from components/camel-jms/src/test/java/org/apache/camel/component/jms/temp/JmsReconnectTest.java
rename to components/camel-jms/src/test/java/org/apache/camel/component/jms/temp/JmsReconnectManualTest.java
index ee533a1e3c8..04b1c5d0f19 100644
--- a/components/camel-jms/src/test/java/org/apache/camel/component/jms/temp/JmsReconnectTest.java
+++ b/components/camel-jms/src/test/java/org/apache/camel/component/jms/temp/JmsReconnectManualTest.java
@@ -34,7 +34,7 @@ import static org.junit.jupiter.api.Assertions.assertEquals;
  * Test for issue CAMEL-3193. Camel should support reconnects in case of connection loss to jms server. After reconnect
  * Temporary destinations have to be recreated as they may become invalid
  */
-public class JmsReconnectTest {
+public class JmsReconnectManualTest {
 
     public interface MyService {
         String echo(String st);
@@ -53,12 +53,11 @@ public class JmsReconnectTest {
     MyService proxy;
 
     /**
-     * This test is disabled as the problem can currently not be reproduced using ActiveMQ. TODO Find a way to recreate
-     * the problem with ActiveMQ and fully automate the test
+     * TODO: Find a way to recreate the problem with ActiveMQ and fully automate the test
      * 
      * @throws Exception
      */
-    @Disabled
+    @Disabled("This test is disabled as the problem can currently not be reproduced using ActiveMQ.")
     @Test
     public void testRequestReply() throws Exception {
         BrokerService broker = ActiveMQEmbeddedServiceBuilder