All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.seleniumtests.util.osutility.SystemUtility Maven / Gradle / Ivy

The newest version!
package com.seleniumtests.util.osutility;

public class SystemUtility {

    /**
     * Wraps System class so that we can mock it
     * @param name
     * @return
     */
    public static String getenv(String name) {
        return System.getenv(name);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy