(self)
| 654 | |
| 655 | |
| 656 | def test_linear(self): |
| 657 | |
| 658 | def func(): |
| 659 | line = 1 |
| 660 | line = 2 |
| 661 | line = 3 |
| 662 | line = 4 |
| 663 | line = 5 |
| 664 | |
| 665 | self.check_lines(func, [1,2,3,4,5]) |
| 666 | |
| 667 | def test_branch(self): |
| 668 | def func(): |
nothing calls this directly
no test coverage detected