AdventOfCode2023/tests/AdventOfCodeFPCUnit.lpr

17 lines
318 B
Plaintext

program AdventOfCodeFPCUnit;
{$mode objfpc}{$H+}
uses
Interfaces, Forms, GuiTestRunner, USolver, UBaseTestCases, UGearRatiosTestCases, UScratchcardsTestCases,
UGiveSeedFertilizerTestCases;
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TGuiTestRunner, TestRunner);
Application.Run;
end.