Lines Matching refs:counts
46 self.counts = TestCounts()
59 self.counts.errors += 1
102 def add_subtest_counts(self, counts: TestCounts) -> None:
112 self.passed += counts.passed
113 self.failed += counts.failed
114 self.crashed += counts.crashed
115 self.skipped += counts.skipped
116 self.errors += counts.errors
628 if test.ok_status() or test.counts.total() < 100:
648 counts = test.counts
651 counts.add_subtest_counts(t.counts)
652 if counts.total() == 0:
653 counts.add_status(status)
654 elif test.counts.get_status() == TestStatus.TEST_CRASHED:
763 test.counts.add_status(
822 test.status = test.counts.get_status()