25 lines
339 B
ObjectPascal
25 lines
339 B
ObjectPascal
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.
|