Heap Tests

This commit is contained in:
Michael Schimmel
2025-05-24 14:59:47 +02:00
parent 4cec368d96
commit 08a110b02f
10 changed files with 6795 additions and 8 deletions
+49
View File
@@ -0,0 +1,49 @@
unit TestSignals;
interface
uses
DUnitX.TestFramework,
Myc.Atomic;
type
[TestFixture]
TMycTest = class
public
[Setup]
procedure Setup;
[TearDown]
procedure TearDown;
// Sample Methods
// Simple single Test
[Test]
procedure Test1;
// Test with TestCase Attribute to supply parameters.
[Test]
[TestCase('TestA','1,2')]
[TestCase('TestB','3,4')]
procedure Test2(const AValue1 : Integer;const AValue2 : Integer);
end;
implementation
procedure TMycTest.Setup;
begin
end;
procedure TMycTest.TearDown;
begin
end;
procedure TMycTest.Test1;
begin
end;
procedure TMycTest.Test2(const AValue1 : Integer;const AValue2 : Integer);
begin
end;
initialization
TDUnitX.RegisterTestFixture(TMycTest);
end.