lazarus/test/lazutils/TestLazLogger.lpr
martin a9dab89451 LazLogger: started tests
git-svn-id: trunk@35327 -
2012-02-12 15:13:37 +00:00

16 lines
229 B
ObjectPascal

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