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}, '
333 Returns False and sets expected_count to None if there is no valid test
348 test.expected_count = None
350 expected_count = int(match.group(1))
351 test.expected_count = expected_count
511 if test.expected_count:
512 if test.expected_count == 1:
515 message += f'({test.expected_count} subtests)'
782 expected_count = test.expected_count
785 while parent_test and (expected_count is None or test_num <= expected_count):
795 if expected_count and test_num <= expected_count: