2007-02-01 15:30:50 +01:00
|
|
|
{ $Id$}
|
|
|
|
|
{ Copyright (C) 2006 Vincent Snijders
|
|
|
|
|
|
|
|
|
|
This source is free software; you can redistribute it and/or modify it under
|
|
|
|
|
the terms of the GNU General Public License as published by the Free
|
|
|
|
|
Software Foundation; either version 2 of the License, or (at your option)
|
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
|
|
This code is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
|
details.
|
|
|
|
|
|
|
|
|
|
A copy of the GNU General Public License is available on the World Wide Web
|
|
|
|
|
at <http://www.gnu.org/copyleft/gpl.html>. You can also obtain it by writing
|
2017-01-29 22:04:32 +01:00
|
|
|
to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
|
|
|
|
|
Boston, MA 02110-1335, USA.
|
2007-02-01 15:30:50 +01:00
|
|
|
}
|
2024-01-28 13:03:35 +01:00
|
|
|
program RunTestsGui;
|
2006-09-09 22:11:36 +02:00
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
|
|
uses
|
2007-02-01 15:30:50 +01:00
|
|
|
Interfaces, Forms,
|
2024-01-28 13:03:35 +01:00
|
|
|
GuiTestRunner, LazMouseAndKeyInput,
|
|
|
|
|
TestUnits, TestLazUtils, TestMenuIntf;
|
2006-09-09 22:11:36 +02:00
|
|
|
|
|
|
|
|
begin
|
|
|
|
|
Application.Title:='Run Lazarus tests';
|
|
|
|
|
Application.Initialize;
|
|
|
|
|
Application.CreateForm(TGuiTestRunner, TestRunner);
|
2016-09-05 17:18:02 +02:00
|
|
|
Application.CreateForm(TTestMenuIntfDlg, TestMenuIntfDlg);
|
2006-09-09 22:11:36 +02:00
|
|
|
Application.Run;
|
|
|
|
|
end.
|
|
|
|
|
|