Skip to content

totalstatistics

TotalStatistics

Container for total statistics.

Source code in src/robot/model/totalstatistics.py
class TotalStatistics:
    """Container for total statistics."""

    def __init__(self, rpa: bool = False):
        #: Instance of :class:`~robot.model.stats.TotalStat` for all the tests.
        self.stat = TotalStat(test_or_task('All {Test}s', rpa))
        self._rpa = rpa

    def visit(self, visitor):
        visitor.visit_total_statistics(self.stat)

    def __iter__(self) -> 'Iterator[TotalStat]':
        yield self.stat

    @property
    def total(self) -> int:
        return self.stat.total

    @property
    def passed(self) -> int:
        return self.stat.passed

    @property
    def skipped(self) -> int:
        return self.stat.skipped

    @property
    def failed(self) -> int:
        return self.stat.failed

    def add_test(self, test):
        self.stat.add_test(test)

    @property
    def message(self) -> str:
        """String representation of the statistics.

        For example::
            2 tests, 1 passed, 1 failed
        """
        kind = test_or_task('test', self._rpa) + plural_or_not(self.total)
        msg = f'{self.total} {kind}, {self.passed} passed, {self.failed} failed'
        if self.skipped:
            msg += f', {self.skipped} skipped'
        return msg

message: str property

String representation of the statistics.

For example:: 2 tests, 1 passed, 1 failed