Package org.jboss.arquillian.spring.integration.test.annotation

Examples of org.jboss.arquillian.spring.integration.test.annotation.ContextLifeCycle


     *
     * @return the {@link ContextLifeCycleMode} defined for the test
     */
    private ContextLifeCycleMode getContextLifeCycleMode(TestClass testClass) {

        ContextLifeCycle contextLifeCycle = testClass.getAnnotation(ContextLifeCycle.class);

        if (contextLifeCycle != null) {

            return contextLifeCycle.value();
        }

        return DEFAULT_LIFE_CYCLE_MODE;
    }
View Full Code Here


     *
     * @return the {@link ContextLifeCycleMode} defined for the test
     */
    private ContextLifeCycleMode getContextLifeCycleMode(TestClass testClass) {

        ContextLifeCycle contextLifeCycle = testClass.getAnnotation(ContextLifeCycle.class);

        if (contextLifeCycle != null) {

            return contextLifeCycle.value();
        }

        return DEFAULT_LIFE_CYCLE_MODE;
    }
View Full Code Here

TOP

Related Classes of org.jboss.arquillian.spring.integration.test.annotation.ContextLifeCycle

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.