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-15 18:21:37 +01:00
|
|
|
UHauntedWastelandTestCases, UMirageMaintenanceTestCases, UPipeMazeTestCases, UCosmicExpansionTestCases,
|
2023-12-19 13:11:39 +01:00
|
|
|
UHotSpringsTestCases, UPointOfIncidenceTestCases, UParabolicReflectorDishTestCases, ULensLibraryTestCases,
|
2023-12-21 16:14:00 +01:00
|
|
|
UFloorWillBeLavaTestCases, UClumsyCrucibleTestCases, ULavaductLagoonTestCases, UAplentyTestCases,
|
2023-12-26 18:29:05 +01:00
|
|
|
UPulsePropagationTestCases, UStepCounterTestCases, USandSlabsTestCases, ULongWalkTestCases,
|
|
|
|
UNeverTellMeTheOddsTestCases;
|
2023-12-03 23:52:54 +01:00
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
begin
|
|
|
|
Application.Initialize;
|
|
|
|
Application.CreateForm(TGuiTestRunner, TestRunner);
|
|
|
|
Application.Run;
|
|
|
|
end.
|
|
|
|
|