Skip to content

suitestatistics

SuiteStatistics

Container for suite statistics.

Source code in src/robot/model/suitestatistics.py
class SuiteStatistics:
    """Container for suite statistics."""

    def __init__(self, suite):
        self.stat = SuiteStat(suite)
        self.suites: list[SuiteStatistics] = []

    def visit(self, visitor):
        visitor.visit_suite_statistics(self)

    def __iter__(self) -> Iterator[SuiteStat]:
        yield self.stat
        for child in self.suites:
            yield from child