mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-24 20:48:24 +02:00
17 lines
329 B
ObjectPascal
17 lines
329 B
ObjectPascal
program FpTest;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces, Forms, GuiTestRunner, TestTypeInfo, TestHelperClasses,
|
|
TestDwarfSetup1, TestDwarfSetupBasic, TestDwarfVarious, testdwarfsetupArray, TestMemManager;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TGuiTestRunner, TestRunner);
|
|
Application.Run;
|
|
end.
|
|
|