(self, expected, text, linewidth)
| 34 | class CountLinesTest(unittest.TestCase): |
| 35 | """Tests for the count_lines_with_wrapping function.""" |
| 36 | def check(self, expected, text, linewidth): |
| 37 | return self.assertEqual( |
| 38 | expected, |
| 39 | count_lines_with_wrapping(text, linewidth), |
| 40 | ) |
| 41 | |
| 42 | def test_count_empty(self): |
| 43 | """Test with an empty string.""" |
no test coverage detected