Lines Matching refs:expected_count
44 self.expected_count = 0 # type: Optional[int]
52 ', ' + str(self.expected_count) + ', ' +
358 test.expected_count = None
362 expected_count = int(match.group(1))
363 test.expected_count = expected_count
364 if expected_count == 0:
556 if test.expected_count:
557 if test.expected_count == 1:
558 message += (' (' + str(test.expected_count) +
561 message += (' (' + str(test.expected_count) +
745 expected_count = test.expected_count
748 while expected_count is None or test_num <= expected_count:
758 if expected_count and test_num <= expected_count: