Interface IReportConfiguration
A configuration that can be used for overriding the default report behavior or extending its capabilities.
Namespace: HP.LFT.Report
Assembly: HP.LFT.Report.dll
Syntax
public interface IReportConfiguration
Properties
Description
the report description. The description appears directly below the title in the report. By default, the description is empty.
Declaration
string Description { get; }
Property Value
| Type | Description |
|---|---|
| string |
IsJUnitEnabled
The boolean value indicating if the JUnit report will be generated or not.
Declaration
bool IsJUnitEnabled { get; }
Property Value
| Type | Description |
|---|---|
| bool |
IsOverrideExisting
Indicates whether the existing report files will be overridden. If false, each report filename gets an ordinal suffix.
Declaration
bool IsOverrideExisting { get; }
Property Value
| Type | Description |
|---|---|
| bool |
ReportEnabled
Specifies if the report should be enabled or not.
Declaration
bool ReportEnabled { get; }
Property Value
| Type | Description |
|---|---|
| bool |
ReportFolder
The name of the folder where the report is generated. Default = RunResults.
Declaration
string ReportFolder { get; }
Property Value
| Type | Description |
|---|---|
| string |
ReportLevel
The level of events to be reported. Possible values: ReportLevel.
Declaration
ReportLevel ReportLevel { get; }
Property Value
| Type | Description |
|---|---|
| ReportLevel |
SeparateReport
Defines the report separation.
Declaration
ReportGranularity SeparateReport { get; }
Property Value
| Type | Description |
|---|---|
| ReportGranularity |
Remarks
Default = Off
SnapshotsLevel
The snapshot capture level used to generate the report. Possible values: CaptureLevel
Declaration
CaptureLevel SnapshotsLevel { get; }
Property Value
| Type | Description |
|---|---|
| CaptureLevel |
TargetDirectory
The root directory where report folders are generated. Default = project output path.
Declaration
string TargetDirectory { get; }
Property Value
| Type | Description |
|---|---|
| string |
Title
the report title. Default = Run Results.
Declaration
string Title { get; }
Property Value
| Type | Description |
|---|---|
| string |