LoadConfiguration method
Load a previously saved state.

Applies to
TAbstractTest

Declaration
Procedure LoadConfiguration(const fileName :string);

Description
Load the enabled/disabled state of this and contained tests.

Parameters
fileName The name of the .INI file to read the configuration from.

See Also

Implementation

procedure TAbstractTest.LoadConfiguration(const fileName: string);
var
  f :TIniFile;
begin
  f := TIniFile.Create(fileName);
  try
    LoadConfiguration(f, 'Tests')
  finally
    f.free
  end
End;


HTML generated by Time2HELP
http://www.time2help.com