davsclaus commented on a change in pull request #1526: URL: https://github.com/apache/camel-quarkus/pull/1526#discussion_r469074548
########## File path: integration-tests/core/src/test/java/org/apache/camel/quarkus/core/CoreTest.java ########## @@ -33,12 +33,18 @@ @QuarkusTest public class CoreTest { + @Test public void testContainerLookupFromRegistry() { RestAssured.when().get("/test/registry/lookup-registry").then().body(is("true")); RestAssured.when().get("/test/registry/lookup-context").then().body(is("true")); } + @Test + public void testLookupRoutes() { + RestAssured.when().get("/test/routes/lookup-routes").then().body(is("true")); Review comment: Yeah good idea ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org