2023-12-03 23:52:54 +01:00
|
|
|
program AdventOfCodeFPCUnit;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
uses
|
2023-12-05 17:21:21 +01:00
|
|
|
Interfaces, Forms, GuiTestRunner, USolver, UBaseTestCases, UTrebuchetTestCases, UCubeConundrumTestCases,
|
2023-12-09 00:59:18 +01:00
|
|
|
UGearRatiosTestCases, UScratchcardsTestCases, UGiveSeedFertilizerTestCases, UWaitForItTestCases, UCamelCardsTestCases,
|
2023-12-12 15:47:58 +01:00
|
|
|
UHauntedWastelandTestCases, UMirageMaintenanceTestCases, UPipeMazeTestCases, UCosmicExpansionTestCases,
|
2023-12-13 18:38:28 +01:00
|
|
|
UHotSpringsTestCases, UPointOfIncidenceTestCases;
|
2023-12-03 23:52:54 +01:00
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
begin
|
|
|
|
Application.Initialize;
|
|
|
|
Application.CreateForm(TGuiTestRunner, TestRunner);
|
|
|
|
Application.Run;
|
|
|
|
end.
|
|
|
|
|