Lines Matching refs:expected_count
31 expected_count : int - expected number of subtests (0 if single
43 self.expected_count = 0 # type: Optional[int]
50 return (f'Test({self.status}, {self.name}, {self.expected_count}, '
331 Returns False and sets expected_count to None if there is no valid test
346 test.expected_count = None
348 expected_count = int(match.group(1))
349 test.expected_count = expected_count
505 if test.expected_count:
506 if test.expected_count == 1:
509 message += f'({test.expected_count} subtests)'
744 expected_count = test.expected_count
747 while parent_test and (expected_count is None or test_num <= expected_count):
757 if expected_count and test_num <= expected_count: