(self)
| 660 | |
| 661 | |
| 662 | def test_linear(self): |
| 663 | |
| 664 | def func(): |
| 665 | line = 1 |
| 666 | line = 2 |
| 667 | line = 3 |
| 668 | line = 4 |
| 669 | line = 5 |
| 670 | |
| 671 | self.check_lines(func, [1,2,3,4,5]) |
| 672 | |
| 673 | def test_branch(self): |
| 674 | def func(): |
nothing calls this directly
no test coverage detected