SaveConfiguration method
Save the current state.

Applies to
TAbstractTest

Declaration
Procedure SaveConfiguration(const fileName :string);

See Also

Implementation

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


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