lazarus/test/testresult-db/testsuite.pp
vincents 6a34f588ad test: small fixes to the test page generator
git-svn-id: trunk@16066 -
2008-08-15 11:40:17 +00:00

20 lines
237 B
ObjectPascal

{$mode objfpc}
{$h+}
program testsuite;
uses utests;
Var
App : TTestSuite;
begin
App:=TTestSuite.Create(nil);
Try
App.Title:='Lazarus Test Suite Results';
App.Initialize;
App.Run;
Finally
App.Free;
end;
end.