lazarus/components/lazutils/test/TestLazStorageMem.lpr
martin 399add232b LazUtils: New List classes
git-svn-id: trunk@49054 -
2015-05-16 18:53:11 +00:00

16 lines
256 B
ObjectPascal

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