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

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


     *
     * @param event the after test event
     */
    public void afterTest(@Observes After event) {

        ContextLifeCycleMode mode = getContextLifeCycleMode(event.getTestClass());
        if (mode == ContextLifeCycleMode.TEST) {

            destroyTestApplicationContext();
        }
    }
View Full Code Here


     *
     * @param event the after test event
     */
    public void afterTest(@Observes After event) {

        ContextLifeCycleMode mode = getContextLifeCycleMode(event.getTestClass());
        if (mode == ContextLifeCycleMode.TEST) {

            destroyTestApplicationContext();
        }
    }
View Full Code Here

TOP

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

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.