Lines Matching refs:counts
47 self.counts = TestCounts()
60 self.counts.errors += 1
103 def add_subtest_counts(self, counts: TestCounts) -> None:
113 self.passed += counts.passed
114 self.failed += counts.failed
115 self.crashed += counts.crashed
116 self.skipped += counts.skipped
117 self.errors += counts.errors
626 if test.ok_status() or test.counts.total() < 100:
646 counts = test.counts
649 counts.add_subtest_counts(t.counts)
650 if counts.total() == 0:
651 counts.add_status(status)
652 elif test.counts.get_status() == TestStatus.TEST_CRASHED:
754 test.counts.add_status(
812 test.status = test.counts.get_status()