LoadConfiguration method |
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
procedure TAbstractTest.LoadConfiguration(const fileName: string); var f :TIniFile; begin f := TIniFile.Create(fileName); try LoadConfiguration(f, 'Tests') finally f.free end End; |
|