Example #1
0
  public void ResetConfigurationFromString(String configurationOptions)
      throws FileNotFoundException, IOException {

    loader = new PropertiesLoader();
    loader.loadFromString(configurationOptions);
  }
Example #2
0
  private void parseConfigurationString(String configurationOptions)
      throws FileNotFoundException, IOException {

    loader.loadFromString(configurationOptions);
  }
Example #3
0
 public SheetEcho(List<List<String>> ParameterTable) throws FileNotFoundException, IOException {
   loader.loadFromString("QUERY");
   resultSheet = ParameterTable;
   myFixture = new SheetFixture("", "", this);
 }