Main Types added

This commit is contained in:
2018-03-21 07:44:33 +03:00
parent f4cd398f99
commit a6f2243e59
3 changed files with 558 additions and 0 deletions

24
Tests/Unit1.pas Normal file
View File

@@ -0,0 +1,24 @@
unit Unit1;
interface
uses
DUnitX.TestFramework,RuntimeBuilder;
type
[TestFixture]
TRuntimeBuilderTestObject=class(TObject)
public
[TestCase]
procedure Test1();
end;
implementation
procedure TRuntimeBuilderTestObject.Test1();
begin
end;
initialization
TDUnitX.RegisterTestFixture(TRuntimeBuilderTestObject);
end.