pascalscript/dunit/ifps3_DUnit.dpr
carlokok afe3fdfd77 re-checkin
git-svn-id: http://code.remobjects.com/svn/pascalscript@1 5c9d2617-0215-0410-a2ee-e80e04d1c6d8
2006-05-30 14:23:25 +00:00

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.