16 from .totalstatistics
import TotalStatisticsBuilder
17 from .suitestatistics
import SuiteStatisticsBuilder
18 from .tagstatistics
import TagStatisticsBuilder
19 from .visitor
import SuiteVisitor
28 def __init__(self, suite, suite_stat_level=-1, tag_stat_include=None,
29 tag_stat_exclude=None, tag_stat_combine=None, tag_doc=None,
30 tag_stat_link=None, rpa=False):
34 tag_stat_exclude, tag_stat_combine,
35 tag_doc, tag_stat_link)
38 self.
totaltotal = total_builder.stats
40 self.
suitesuite = suite_builder.stats
42 self.
tagstags = tag_builder.stats
45 visitor.visit_statistics(self)
50 def __init__(self, total_builder, suite_builder, tag_builder):
def __init__(self, total_builder, suite_builder, tag_builder)
def visit_test(self, test)
Implements traversing through tests.
def end_suite(self, suite)
Called when a suite ends.
def visit_keyword(self, kw)
Implements traversing through keywords.
def start_suite(self, suite)
Called when a suite starts.
Container for total, suite and tag statistics.
def __init__(self, suite, suite_stat_level=-1, tag_stat_include=None, tag_stat_exclude=None, tag_stat_combine=None, tag_doc=None, tag_stat_link=None, rpa=False)
Interface to ease traversing through a test suite structure.