lazarus/components/lazutils/test/TestLazStorageMem.lpr
2019-04-12 18:19:32 +00:00

16 lines
278 B
ObjectPascal

program TestLazStorageMem;
{$mode objfpc}{$H+}
{$apptype console}
uses
Interfaces, Forms, GuiTestRunner, TestLazStorageMemCase1, TestConfigMemStorage;
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TGuiTestRunner, TestRunner);
Application.Run;
end.