Removed or unregistered tests for incomplete solutions

This commit is contained in:
Stefan Müller 2023-12-21 21:14:50 +01:00 committed by Stefan Müller
parent 9855a38e50
commit 4e28a7a4c2
3 changed files with 4 additions and 10 deletions

View File

@ -84,7 +84,7 @@ end;
initialization initialization
RegisterTest(TClumsyCrucibleFullDataTestCase); //RegisterTest(TClumsyCrucibleFullDataTestCase);
RegisterTest(TClumsyCrucibleExampleTestCase); //RegisterTest(TClumsyCrucibleExampleTestCase);
end. end.

View File

@ -84,7 +84,7 @@ end;
initialization initialization
RegisterTest(TLavaductLagoonFullDataTestCase); //RegisterTest(TLavaductLagoonFullDataTestCase);
RegisterTest(TLavaductLagoonExampleTestCase); //RegisterTest(TLavaductLagoonExampleTestCase);
end. end.

View File

@ -33,7 +33,6 @@ type
function CreateSolver: ISolver; override; function CreateSolver: ISolver; override;
published published
procedure TestPart1; procedure TestPart1;
procedure TestPart2;
end; end;
{ TPulsePropagationExampleTestCase } { TPulsePropagationExampleTestCase }
@ -74,11 +73,6 @@ begin
AssertEquals(949764474, FSolver.GetResultPart1); AssertEquals(949764474, FSolver.GetResultPart1);
end; end;
procedure TPulsePropagationFullDataTestCase.TestPart2;
begin
AssertEquals(-1, FSolver.GetResultPart2);
end;
{ TPulsePropagationExampleTestCase } { TPulsePropagationExampleTestCase }
function TPulsePropagationExampleTestCase.CreateSolver: ISolver; function TPulsePropagationExampleTestCase.CreateSolver: ISolver;