Package org.jboss.arquillian.drone.impl.DroneLifecycleManager

Examples of org.jboss.arquillian.drone.impl.DroneLifecycleManager.GlobalDroneConfiguration


        DroneContext context = getManager().getContext(ApplicationContext.class).getObjectStore().get(DroneContext
                .class);
        Assert.assertNotNull("DroneContext was created in the context", context);

        GlobalDroneConfiguration globalDroneConfiguration = context.getGlobalDroneConfiguration
                (GlobalDroneConfiguration.class);
        Assert.assertNotNull("Global Drone configuration was created", globalDroneConfiguration);
        Assert.assertEquals("Drone timeout is set to " + timeout + " seconds", timeout,
                globalDroneConfiguration.getInstantiationTimeoutInSeconds());


    }
View Full Code Here

TOP

Related Classes of org.jboss.arquillian.drone.impl.DroneLifecycleManager.GlobalDroneConfiguration

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.