(self)
| 671 | self.check_lines(func, [1,2,3,4,5]) |
| 672 | |
| 673 | def test_branch(self): |
| 674 | def func(): |
| 675 | if "true".startswith("t"): |
| 676 | line = 2 |
| 677 | line = 3 |
| 678 | else: |
| 679 | line = 5 |
| 680 | line = 6 |
| 681 | |
| 682 | self.check_lines(func, [1,2,3,6]) |
| 683 | |
| 684 | def test_try_except(self): |
| 685 |
nothing calls this directly
no test coverage detected