Skip to content

ReportStats

Namespace: TrganReport.Models

Represents aggregated statistics for a report, including counts of test containers, tests, and steps categorized by status. Useful for generating summary views, visual indicators, and analytics in the final report.

public sealed class ReportStats

Inheritance ObjectReportStats

Properties

TotalTestContainers

Total number of test containers executed.

public int TotalTestContainers { get; internal set; }

Property Value

Int32

PassedTestContainers

Number of test containers that passed.

public int PassedTestContainers { get; internal set; }

Property Value

Int32

FailedTestContainers

Number of test containers that failed.

public int FailedTestContainers { get; internal set; }

Property Value

Int32

SkippedTestContainers

Number of test containers that were skipped.

public int SkippedTestContainers { get; internal set; }

Property Value

Int32

TotalTests

Total number of tests executed.

public int TotalTests { get; internal set; }

Property Value

Int32

PassedTests

Number of tests that passed.

public int PassedTests { get; internal set; }

Property Value

Int32

FailedTests

Number of tests that failed.

public int FailedTests { get; internal set; }

Property Value

Int32

SkippedTests

Number of tests that were skipped.

public int SkippedTests { get; internal set; }

Property Value

Int32

TotalSteps

Total number of steps executed.

public int TotalSteps { get; internal set; }

Property Value

Int32

PassedSteps

Number of steps that passed.

public int PassedSteps { get; internal set; }

Property Value

Int32

FailedSteps

Number of steps that failed.

public int FailedSteps { get; internal set; }

Property Value

Int32

SkippedSteps

Number of steps that were skipped.

public int SkippedSteps { get; internal set; }

Property Value

Int32

Constructors

ReportStats()

public ReportStats()