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 Object → ReportStats
Properties
TotalTestContainers
Total number of test containers executed.
public int TotalTestContainers { get; internal set; }
Property Value
PassedTestContainers
Number of test containers that passed.
public int PassedTestContainers { get; internal set; }
Property Value
FailedTestContainers
Number of test containers that failed.
public int FailedTestContainers { get; internal set; }
Property Value
SkippedTestContainers
Number of test containers that were skipped.
public int SkippedTestContainers { get; internal set; }
Property Value
TotalTests
Total number of tests executed.
public int TotalTests { get; internal set; }
Property Value
PassedTests
Number of tests that passed.
public int PassedTests { get; internal set; }
Property Value
FailedTests
Number of tests that failed.
public int FailedTests { get; internal set; }
Property Value
SkippedTests
Number of tests that were skipped.
public int SkippedTests { get; internal set; }
Property Value
TotalSteps
Total number of steps executed.
public int TotalSteps { get; internal set; }
Property Value
PassedSteps
Number of steps that passed.
public int PassedSteps { get; internal set; }
Property Value
FailedSteps
Number of steps that failed.
public int FailedSteps { get; internal set; }
Property Value
SkippedSteps
Number of steps that were skipped.
public int SkippedSteps { get; internal set; }
Property Value
Constructors
ReportStats()
public ReportStats()