
com.slickqa.junit.SystemPropertyConfigurationSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of slickqa-junit Show documentation
Show all versions of slickqa-junit Show documentation
JUnit integration for the slick test management tool.
The newest version!
package com.slickqa.junit;
/**
*
*/
public class SystemPropertyConfigurationSource implements SlickConfigurationSource {
@Override
public String getConfigurationEntry(String name) {
return System.getProperty(name);
}
@Override
public String getConfigurationEntry(String name, String defaultValue) {
return System.getProperty(name, defaultValue);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy