(self)
| 18 | assert get_terminal_width() == 80 |
| 19 | |
| 20 | def test_parse_location_windows(self) -> None: |
| 21 | assert parse_location(r"C:\test.py:1:1") == (r"C:\test.py", [1, 1]) |
| 22 | assert parse_location(r"C:\test.py:1:1:1:1") == (r"C:\test.py", [1, 1, 1, 1]) |
| 23 | |
| 24 | |
| 25 | class TestWriteJunitXml(TestCase): |
nothing calls this directly
no test coverage detected