1234567891011121314151617181920212223242526 |
- program guitestfpreport;
- {$mode objfpc}{$H+}
- uses
- Classes
- ,Interfaces
- ,Forms
- ,GuiTestRunner
- ,regtests
- ;
- procedure MainProc;
- begin
- Application.Initialize;
- Application.CreateForm(TGUITestRunner, TestRunner);
- Application.Run;
- end;
- begin
- MainProc;
- end.
|