This is an automated email from the ASF dual-hosted git repository. aldettinger pushed a change to branch CAMEL-13965 in repository https://gitbox.apache.org/repos/asf/camel.git.
from 59b1dde CAMEL-13965: Initial import of camel-test-spring-junit5 based on camel-test-spring new 7292ede CAMEL-13965: Removed deprecated classes new ae5f510 CAMEL-13965: Moved classes to a dedicated junit5 package new 3c1e69e CAMEL-13965: Migrated the initial import of camel-test-spring-junit5 to camel-test-junit5 The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: components/camel-test-spring-junit5/pom.xml | 8 +- .../{test-spring.adoc => test-spring-junit5.adoc} | 24 +++- .../spring/CamelSpringBootJUnit4ClassRunner.java | 33 ----- .../camel/test/spring/CamelSpringBootRunner.java | 87 ------------- .../CamelSpringDelegatingTestContextLoader.java | 138 --------------------- .../test/spring/CamelSpringJUnit4ClassRunner.java | 33 ----- .../camel/test/spring/CamelSpringRunner.java | 83 ------------- .../{ => junit5}/CamelAnnotationsHandler.java | 6 +- .../CamelSpringBootExecutionListener.java | 2 +- .../CamelSpringTest.java} | 27 ++-- .../{ => junit5}/CamelSpringTestContextLoader.java | 8 +- ...ringTestContextLoaderTestExecutionListener.java | 2 +- .../spring/{ => junit5}/CamelSpringTestHelper.java | 2 +- .../{ => junit5}/CamelSpringTestSupport.java | 27 ++-- .../{ => junit5}/CamelTestContextBootstrapper.java | 2 +- .../camel/test/spring/{ => junit5}/DisableJmx.java | 2 +- .../DisableJmxTestExecutionListener.java | 2 +- .../spring/{ => junit5}/EnableRouteCoverage.java | 2 +- .../test/spring/{ => junit5}/ExcludeRoutes.java | 2 +- .../test/spring/{ => junit5}/MockEndpoints.java | 2 +- .../spring/{ => junit5}/MockEndpointsAndSkip.java | 2 +- .../spring/{ => junit5}/ProvidesBreakpoint.java | 2 +- .../spring/{ => junit5}/RouteCoverageDumper.java | 2 +- .../{ => junit5}/RouteCoverageEventNotifier.java | 2 +- .../test/spring/{ => junit5}/ShutdownTimeout.java | 2 +- .../StopWatchTestExecutionListener.java | 10 +- .../test/spring/{ => junit5}/UseAdviceWith.java | 2 +- ...eOverridePropertiesWithPropertiesComponent.java | 2 +- ...nterceptSendToEndpointWithLoadbalancerTest.java | 4 +- .../test/issues/AdviceWithOnCompletionTest.java | 4 +- .../AdviceWithOnExceptionMultipleIssueTest.java | 4 +- .../test/issues/MockEndpointsAndSkipTest.java | 4 +- .../camel/test/patterns/DebugSpringTest.java | 16 ++- .../camel/test/patterns/ProduceBeanTest.java | 4 +- .../test/patterns/ProducerBeanInjectTest.java | 12 +- .../apache/camel/test/patterns/SimpleMockTest.java | 4 +- .../test/spring/CamelSpringActiveProfileTest.java | 6 +- ...ingOverridePropertiesForPropertyInjectTest.java | 13 +- .../spring/CamelSpringOverridePropertiesTest.java | 9 +- .../CamelSpringPropertiesLocationElementTest.java | 16 ++- ...lSpringRouteProcessorDumpRouteCoverageTest.java | 17 +-- ...pringRunnerDisableJmxInheritedOverrideTest.java | 5 +- .../spring/CamelSpringRunnerDisableJmxTest.java | 5 +- .../spring/CamelSpringRunnerExcludeRoutesTest.java | 5 +- .../test/spring/CamelSpringRunnerPlainTest.java | 18 +-- .../CamelSpringRunnerProvidesBreakpointTest.java | 9 +- ...RunnerShutdownTimeoutInheritedOverrideTest.java | 6 +- .../CamelSpringRunnerShutdownTimeoutTest.java | 6 +- .../CamelSpringRunnerTestPropertySourceTest.java | 8 +- .../spring/CamelSpringRunnerUseAdviceWithTest.java | 18 +-- .../CamelSpringTestSupportActiveProfileTest.java | 3 +- .../apache/camel/test/spring/TestRouteBuilder.java | 2 +- 52 files changed, 191 insertions(+), 523 deletions(-) rename components/camel-test-spring-junit5/src/main/docs/{test-spring.adoc => test-spring-junit5.adoc} (94%) delete mode 100644 components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/CamelSpringBootJUnit4ClassRunner.java delete mode 100644 components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/CamelSpringBootRunner.java delete mode 100644 components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/CamelSpringDelegatingTestContextLoader.java delete mode 100644 components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/CamelSpringJUnit4ClassRunner.java delete mode 100644 components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/CamelSpringRunner.java rename components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/{ => junit5}/CamelAnnotationsHandler.java (99%) rename components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/{ => junit5}/CamelSpringBootExecutionListener.java (99%) copy components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/{ExcludeRoutes.java => junit5/CamelSpringTest.java} (61%) rename components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/{ => junit5}/CamelSpringTestContextLoader.java (98%) rename components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/{ => junit5}/CamelSpringTestContextLoaderTestExecutionListener.java (97%) rename components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/{ => junit5}/CamelSpringTestHelper.java (98%) rename components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/{ => junit5}/CamelSpringTestSupport.java (92%) rename components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/{ => junit5}/CamelTestContextBootstrapper.java (96%) rename components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/{ => junit5}/DisableJmx.java (97%) rename components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/{ => junit5}/DisableJmxTestExecutionListener.java (97%) rename components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/{ => junit5}/EnableRouteCoverage.java (97%) rename components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/{ => junit5}/ExcludeRoutes.java (97%) rename components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/{ => junit5}/MockEndpoints.java (97%) rename components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/{ => junit5}/MockEndpointsAndSkip.java (97%) rename components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/{ => junit5}/ProvidesBreakpoint.java (97%) rename components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/{ => junit5}/RouteCoverageDumper.java (98%) rename components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/{ => junit5}/RouteCoverageEventNotifier.java (97%) rename components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/{ => junit5}/ShutdownTimeout.java (97%) rename components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/{ => junit5}/StopWatchTestExecutionListener.java (95%) rename components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/{ => junit5}/UseAdviceWith.java (97%) rename components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/{ => junit5}/UseOverridePropertiesWithPropertiesComponent.java (96%)