JiriOndrusek commented on code in PR #4600: URL: https://github.com/apache/camel-quarkus/pull/4600#discussion_r1115426707
########## integration-tests/micrometer/src/test/java/org/apache/camel/quarkus/component/micrometer/it/MicrometerTest.java: ########## @@ -83,20 +84,58 @@ public void testMicrometerExchangeEventNotifier() { assertTrue(getMetricValue(Double.class, "timer", "CamelExchangeEventNotifier", tags) >= 0.0); } + @Test + public void testAnnotations() { + RestAssured.get("/micrometer/annotations/call") + .then() + .statusCode(200); + RestAssured.get("/micrometer/annotations/call") + .then() + .statusCode(200); + + int count = RestAssured.get("/micrometer/annotations/get") Review Comment: @aldettinger I have to get count from the object, because it can have value 2 or 3. Depends whether testMetricsApiRenamed was executed or not. -- 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. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org