This is an automated email from the ASF dual-hosted git repository. apupier pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit ce84a7632898e6a704708e7f9b3600f3feb80b2c Author: smjain <[email protected]> AuthorDate: Thu Sep 24 07:44:39 2026 +0530 CAMEL-24958: camel-core - Make the new test class package-private Co-Authored-By: Claude Opus 5.5 <[email protected]> --- .../processor/RecipientListReleaseUnsentProducerTest.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/camel-core/src/test/java/org/apache/camel/processor/RecipientListReleaseUnsentProducerTest.java b/core/camel-core/src/test/java/org/apache/camel/processor/RecipientListReleaseUnsentProducerTest.java index 145395bd06de..edd2e80a512d 100644 --- a/core/camel-core/src/test/java/org/apache/camel/processor/RecipientListReleaseUnsentProducerTest.java +++ b/core/camel-core/src/test/java/org/apache/camel/processor/RecipientListReleaseUnsentProducerTest.java @@ -46,7 +46,7 @@ import static org.junit.jupiter.api.Assertions.assertTrue; * The pooled component has no singleton producer, so a producer which is released is reused from the pool by the next * exchange, and a producer which is not released makes the next exchange create and start a new producer. */ -public class RecipientListReleaseUnsentProducerTest extends ContextTestSupport { +class RecipientListReleaseUnsentProducerTest extends ContextTestSupport { private final AtomicInteger producersStarted = new AtomicInteger(); private final AtomicInteger producersSent = new AtomicInteger(); @@ -62,7 +62,7 @@ public class RecipientListReleaseUnsentProducerTest extends ContextTestSupport { } @Test - public void testStopOnException() { + void testStopOnException() { for (int i = 0; i < 5; i++) { Exchange out = template.send("direct:stop", e -> e.getIn().setHeader("to", "direct:boom,pooled:b")); assertNotNull(out.getException()); @@ -74,7 +74,7 @@ public class RecipientListReleaseUnsentProducerTest extends ContextTestSupport { } @Test - public void testStopOnExceptionParallel() { + void testStopOnExceptionParallel() { for (int i = 0; i < 5; i++) { Exchange out = template.send("direct:parallel", e -> e.getIn().setHeader("to", "direct:boom,pooled:b")); assertNotNull(out.getException()); @@ -86,7 +86,7 @@ public class RecipientListReleaseUnsentProducerTest extends ContextTestSupport { } @Test - public void testPrototypeEndpointStopped() { + void testPrototypeEndpointStopped() { for (int i = 0; i < 5; i++) { final int n = i; Exchange out = template.send("direct:prototype", e -> e.getIn().setHeader("to", "direct:boom,pooled:c" + n)); @@ -99,7 +99,7 @@ public class RecipientListReleaseUnsentProducerTest extends ContextTestSupport { } @Test - public void testTimeout() { + void testTimeout() { try { for (int i = 0; i < 2; i++) { Exchange out = template.send("direct:timeout",
