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

orpiske 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 d5656b3  CAMEL-16400: adjust manual integration tests for camel-smpp 
(#5404)
d5656b3 is described below

commit d5656b3ede5b7480936618e4fe428dafe9d1b05f
Author: Otavio Rodolfo Piske <orpi...@users.noreply.github.com>
AuthorDate: Fri Apr 16 17:10:42 2021 +0200

    CAMEL-16400: adjust manual integration tests for camel-smpp (#5404)
---
 components/camel-smpp/pom.xml                                    | 9 +++++++++
 ...pComponentIntegrationTest.java => SmppComponentManualIT.java} | 2 +-
 ...ringIntegrationTest.java => SmppComponentSpringManualIT.java} | 2 +-
 ...ctIntegrationTest.java => SmppConsumerReconnectManualIT.java} | 2 +-
 ...ctIntegrationTest.java => SmppProducerReconnectManualIT.java} | 2 +-
 5 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/components/camel-smpp/pom.xml b/components/camel-smpp/pom.xml
index 91d75a2..decce6b 100644
--- a/components/camel-smpp/pom.xml
+++ b/components/camel-smpp/pom.xml
@@ -74,4 +74,13 @@
         </dependency>
     </dependencies>
 
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-failsafe-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
+
 </project>
diff --git 
a/components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppComponentIntegrationTest.java
 
b/components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppComponentManualIT.java
similarity index 99%
rename from 
components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppComponentIntegrationTest.java
rename to 
components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppComponentManualIT.java
index b8065fb..7448eb9 100644
--- 
a/components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppComponentIntegrationTest.java
+++ 
b/components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppComponentManualIT.java
@@ -38,7 +38,7 @@ import static org.junit.jupiter.api.Assertions.assertNull;
  * A SMSC for test is available here: 
http://www.seleniumsoftware.com/downloads.html
  */
 @Disabled("Must be manually tested")
-public class SmppComponentIntegrationTest extends CamelTestSupport {
+public class SmppComponentManualIT extends CamelTestSupport {
 
     @EndpointInject("mock:result")
     private MockEndpoint result;
diff --git 
a/components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppComponentSpringIntegrationTest.java
 
b/components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppComponentSpringManualIT.java
similarity index 99%
rename from 
components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppComponentSpringIntegrationTest.java
rename to 
components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppComponentSpringManualIT.java
index 92cce8d..93e903b 100644
--- 
a/components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppComponentSpringIntegrationTest.java
+++ 
b/components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppComponentSpringManualIT.java
@@ -38,7 +38,7 @@ import static org.junit.jupiter.api.Assertions.assertNull;
  * A SMSC for test is available here: 
http://www.seleniumsoftware.com/downloads.html
  */
 @Disabled("Must be manually tested")
-public class SmppComponentSpringIntegrationTest extends CamelSpringTestSupport 
{
+public class SmppComponentSpringManualIT extends CamelSpringTestSupport {
 
     @EndpointInject("mock:result")
     private MockEndpoint result;
diff --git 
a/components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppConsumerReconnectIntegrationTest.java
 
b/components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppConsumerReconnectManualIT.java
similarity index 95%
rename from 
components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppConsumerReconnectIntegrationTest.java
rename to 
components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppConsumerReconnectManualIT.java
index b689f39..396aa65 100644
--- 
a/components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppConsumerReconnectIntegrationTest.java
+++ 
b/components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppConsumerReconnectManualIT.java
@@ -27,7 +27,7 @@ import org.junit.jupiter.api.Test;
  * A SMSC for test is available here: 
http://www.seleniumsoftware.com/downloads.html
  */
 @Disabled("Must be manually tested")
-public class SmppConsumerReconnectIntegrationTest extends CamelTestSupport {
+public class SmppConsumerReconnectManualIT extends CamelTestSupport {
 
     @Test
     public void test() throws Exception {
diff --git 
a/components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppProducerReconnectIntegrationTest.java
 
b/components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppProducerReconnectManualIT.java
similarity index 96%
rename from 
components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppProducerReconnectIntegrationTest.java
rename to 
components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppProducerReconnectManualIT.java
index 6296a2f..824620e 100644
--- 
a/components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppProducerReconnectIntegrationTest.java
+++ 
b/components/camel-smpp/src/test/java/org/apache/camel/component/smpp/integration/SmppProducerReconnectManualIT.java
@@ -27,7 +27,7 @@ import org.junit.jupiter.api.Test;
  * A SMSC for test is available here: 
http://www.seleniumsoftware.com/downloads.html
  */
 @Disabled("Must be manually tested")
-public class SmppProducerReconnectIntegrationTest extends CamelTestSupport {
+public class SmppProducerReconnectManualIT extends CamelTestSupport {
 
     @Test
     public void test() throws Exception {

Reply via email to