This commit is contained in:
2018-08-26 22:05:46 +03:00
parent d986fc3ea0
commit 5338449ca2
7 changed files with 895 additions and 1 deletions

26
DelphiTests/MainTest.pas Normal file
View File

@@ -0,0 +1,26 @@
unit MainTest;
interface
uses
DUnitX.TestFramework;
type
[TestFixture]
TMyTestObject = class(TObject)
public
// Sample Methods
// Simple single Test
[Test]
procedure Test1;
// Test with TestCase Atribute to supply parameters.
end;
implementation
procedure TMyTestObject.Test1;
begin
end;
initialization
TDUnitX.RegisterTestFixture(TMyTestObject);
end.