This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 676e9e1 Fixed CS 676e9e1 is described below commit 676e9e161a07e4ad8fd14dc293173c06ca4da073 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Fri Mar 19 06:17:10 2021 +0100 Fixed CS --- .../org/apache/camel/test/spring/junit5/CamelSpringTestSupport.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/camel-test/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/junit5/CamelSpringTestSupport.java b/components/camel-test/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/junit5/CamelSpringTestSupport.java index b8e61c8..31702ef 100644 --- a/components/camel-test/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/junit5/CamelSpringTestSupport.java +++ b/components/camel-test/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/junit5/CamelSpringTestSupport.java @@ -58,6 +58,9 @@ import static org.junit.jupiter.api.Assertions.fail; */ public abstract class CamelSpringTestSupport extends CamelTestSupport { + public static final String TEST_CLASS_NAME_PROPERTY = "testClassName"; + public static final String TEST_CLASS_SIMPLE_NAME_PROPERTY = "testClassSimpleName"; + protected static ThreadLocal<AbstractApplicationContext> threadAppContext = new ThreadLocal<>(); protected static Object lock = new Object(); @@ -234,9 +237,6 @@ public abstract class CamelSpringTestSupport extends CamelTestSupport { return SpringCamelContext.springCamelContext(applicationContext, false); } - public static final String TEST_CLASS_NAME_PROPERTY = "testClassName"; - public static final String TEST_CLASS_SIMPLE_NAME_PROPERTY = "testClassSimpleName"; - public AbstractXmlApplicationContext newAppContext(String configLocation) throws BeansException { return newAppContext(configLocation, getClass()); }