afe3fdfd77
git-svn-id: http://code.remobjects.com/svn/pascalscript@1 5c9d2617-0215-0410-a2ee-e80e04d1c6d8
22 lines
511 B
ObjectPascal
22 lines
511 B
ObjectPascal
program ifps3_DUnit;
|
|
|
|
uses
|
|
Forms,
|
|
TestFramework,
|
|
GUITestRunner,
|
|
CompilerTestBase in 'CompilerTestBase.pas',
|
|
CompilerTestSimple in 'CompilerTestSimple.pas',
|
|
CompilerTestFunctions in 'CompilerTestFunctions.pas',
|
|
CompileTestExtended in 'CompileTestExtended.pas';
|
|
|
|
{$R *.res}
|
|
|
|
var
|
|
AGUITestRunner: TGUITestRunner;
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TGUITestRunner, AGUITestRunner);
|
|
AGUITestRunner.Suite := RegisteredTests;
|
|
Application.Run;
|
|
end.
|