(data)
| 6 | |
| 7 | |
| 8 | def TestOneInput(data): |
| 9 | fdp = atheris.FuzzedDataProvider(data) |
| 10 | md = MarkdownIt() |
| 11 | raw_markdown = fdp.ConsumeUnicodeNoSurrogates(sys.maxsize) |
| 12 | md.parse(raw_markdown) |
| 13 | md.render(raw_markdown) |
| 14 | |
| 15 | |
| 16 | def main(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…