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
661 if test.ok_status() or test.counts.total() < 100:
681 counts = test.counts
684 counts.add_subtest_counts(t.counts)
685 if counts.total() == 0:
686 counts.add_status(status)
687 elif test.counts.get_status() == TestStatus.TEST_CRASHED:
796 test.counts.add_status(
860 test.status = test.counts.get_status()