|
@@ -33,6 +33,9 @@ type
|
|
function GetTestName: string; override;
|
|
function GetTestName: string; override;
|
|
function GetTestSuiteName: string; override;
|
|
function GetTestSuiteName: string; override;
|
|
procedure SetTestSuiteName(const aName: string); override;
|
|
procedure SetTestSuiteName(const aName: string); override;
|
|
|
|
+ protected
|
|
|
|
+ function GetEnableIgnores: boolean; override;
|
|
|
|
+ procedure SetEnableIgnores(Value: boolean); override;
|
|
public
|
|
public
|
|
function CountTestCases: integer; override;
|
|
function CountTestCases: integer; override;
|
|
constructor Create(aTest: TTest); reintroduce; overload;
|
|
constructor Create(aTest: TTest); reintroduce; overload;
|
|
@@ -71,6 +74,16 @@ begin
|
|
FTest.TestSuiteName := aName;
|
|
FTest.TestSuiteName := aName;
|
|
end;
|
|
end;
|
|
|
|
|
|
|
|
+function TTestDecorator.GetEnableIgnores: boolean;
|
|
|
|
+begin
|
|
|
|
+ result := FTest.EnableIgnores;
|
|
|
|
+end;
|
|
|
|
+
|
|
|
|
+procedure TTestDecorator.SetEnableIgnores(Value: boolean);
|
|
|
|
+begin
|
|
|
|
+ FTest.EnableIgnores := Value;
|
|
|
|
+end;
|
|
|
|
+
|
|
function TTestDecorator.CountTestCases: integer;
|
|
function TTestDecorator.CountTestCases: integer;
|
|
begin
|
|
begin
|
|
Result := FTest.CountTestCases;
|
|
Result := FTest.CountTestCases;
|