Files
lazarus-ccr/components/fpspreadsheet/tests/spreadtestgui.lpr

16 lines
295 B
ObjectPascal
Raw Normal View History

program spreadtestgui;
{$mode objfpc}{$H+}
uses
Interfaces, Forms, GuiTestRunner,
datetests, stringtests,
numberstests, manualtests, testsutility, internaltests, formattests;
begin
Application.Initialize;
Application.CreateForm(TGuiTestRunner, TestRunner);
Application.Run;
end.