()
| 287 | |
| 288 | |
| 289 | def test_4400(): |
| 290 | with pymupdf.open() as document: |
| 291 | page = document.new_page() |
| 292 | writer = pymupdf.TextWriter(page.rect) |
| 293 | text = '111111111' |
| 294 | print(f'Calling writer.fill_textbox().', flush=1) |
| 295 | writer.fill_textbox(rect=pymupdf.Rect(0, 0, 100, 20), pos=(80, 0), text=text, fontsize=8) |
| 296 | |
| 297 | |
| 298 | def test_4613(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…