vincent-hugot / qtest

Inline (Unit) Tests for OCaml
GNU General Public License v3.0
67 stars 8 forks source link

Where are printers documented? #58

Closed kwshi closed 3 years ago

kwshi commented 3 years ago

The documentation mentions using Q.Print to define printers, and I see code in c-cube/ocaml-containers that references things like Q.Print.list and Q.Print.int to define printers, but I can't seem to find an exhaustive reference/documentation on all the printers defined by Q.Print. In fact, I can't even seem to find any source code for the Q.Print module. What am I missing?

c-cube commented 3 years ago

Q is an alias to QCheck, a dependency of qtest. The documentation for printers is defined there :-)

kwshi commented 3 years ago

Ah! Thanks.