Package org.jboss.arquillian.graphene.configuration

Examples of org.jboss.arquillian.graphene.configuration.GrapheneConfiguration


     *
     * @return the context of configuration for current thread
     * @throws NullPointerException when context is null
     */
    static GrapheneConfiguration get() {
        GrapheneConfiguration configuration = REFERENCE.get();
        if (configuration == null) {
            throw new NullPointerException("configuration is null - it needs to be setup before starting to use it");
        }
        return configuration;
    }
View Full Code Here

TOP

Related Classes of org.jboss.arquillian.graphene.configuration.GrapheneConfiguration

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.