You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@3124 8e941d3f-bd1b-0410-a28a-d453659cc2b4
17 lines
401 B
ObjectPascal
17 lines
401 B
ObjectPascal
program spreadtestgui;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces, Forms, GuiTestRunner, datetests, stringtests, numberstests,
|
|
manualtests, testsutility, internaltests, formattests, colortests, fonttests,
|
|
optiontests, numformatparsertests, formulatests, rpnFormulaUnit,
|
|
emptycelltests;
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TGuiTestRunner, TestRunner);
|
|
Application.Run;
|
|
end.
|
|
|