You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2019/08/20 12:21:25 UTC

[camel-quarkus] branch master updated (515c1de -> d964470)

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

lburgazzoli pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.


    from 515c1de  Use docker by default because of https://github.com/oracle/graal/issues/1582
     add d964470  Add tests to the twitter itest project

No new revisions were added by this update.

Summary of changes:
 integration-tests/twitter/pom.xml                  |  14 +++
 .../quarkus/component/twitter/CamelResource.java   | 108 +++++++++++++++++
 .../quarkus/component/twitter/CamelRoute.java      |  40 ------
 .../twitter/TwitterDirectMessageProducer.java      |  41 -------
 .../src/main/resources/application.properties      |   7 +-
 .../quarkus/component/twitter/CamelTwitterIT.java} |   7 +-
 .../component/twitter/CamelTwitterTest.java        | 134 +++++++++++++++++++++
 7 files changed, 264 insertions(+), 87 deletions(-)
 create mode 100644 integration-tests/twitter/src/main/java/org/apache/camel/quarkus/component/twitter/CamelResource.java
 delete mode 100644 integration-tests/twitter/src/main/java/org/apache/camel/quarkus/component/twitter/CamelRoute.java
 delete mode 100644 integration-tests/twitter/src/main/java/org/apache/camel/quarkus/component/twitter/TwitterDirectMessageProducer.java
 copy integration-tests/{servlet/src/test/java/org/apache/camel/quarkus/component/servlet/CamelServletIT.java => twitter/src/test/java/org/apache/camel/quarkus/component/twitter/CamelTwitterIT.java} (76%)
 create mode 100644 integration-tests/twitter/src/test/java/org/apache/camel/quarkus/component/twitter/CamelTwitterTest.java