Package net.mindengine.galen.tests

Examples of net.mindengine.galen.tests.GalenProperties


        else return file;
    }
   
    public static Properties loadProperties(String fileName) throws IOException {
       
        GalenProperties properties = null;
        if (TestSession.current() != null) {
            properties = TestSession.current().getProperties();
        }
        else properties = new GalenProperties();
       
        properties.load(new File(fileName));
        return properties.getProperties();
    }
View Full Code Here

TOP

Related Classes of net.mindengine.galen.tests.GalenProperties

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.