Skip to content

Instantly share code, notes, and snippets.

@vinsguru
Created April 30, 2017 13:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vinsguru/8de3084019e4efd2ab8adde6b654cfcc to your computer and use it in GitHub Desktop.
Save vinsguru/8de3084019e4efd2ab8adde6b654cfcc to your computer and use it in GitHub Desktop.
public class PropertyReader extends ConfigTestElement implements TestBean, TestStateListener {
private static final Logger log = LoggingManager.getLoggerForClass();
private String propFilePath;
public PropertyReader() {
super();
}
public void testEnded() {
// TODO Auto-generated method stub
}
public void testEnded(String arg0) {
// TODO Auto-generated method stub
}
public void testStarted() {
// TODO Auto-generated method stub
}
public void testStarted(String arg0) {
// TODO Auto-generated method stub
}
/**
* @return the file path
*/
public String getPropFilePath() {
return this.propFilePath;
}
/**
* @param propFilePath the file path to read
*/
public void setPropFilePath(String propFilePath) {
this.propFilePath = propFilePath;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment