Main Types added
This commit is contained in:
24
Tests/Unit1.pas
Normal file
24
Tests/Unit1.pas
Normal 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.
|
||||
Reference in New Issue
Block a user