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

com.github.endoscope.util.PropertyTestUtil Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.github.endoscope.util;

public class PropertyTestUtil {

    public static void withProperty(String name, String value, Runnable runnable) {
        String previousValue = System.getProperty(name);
        System.setProperty(name, value);
        try{
            runnable.run();
        }finally{
            if( previousValue == null ){
                System.clearProperty(name);
            } else {
                System.setProperty(name, previousValue);
            }
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy