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();
}