Where can I find comprehensive Google Test documentation?

A Google search returns a GitHub page for Google Test. I find many links on the Internet at https://github.com/google/googletest , which now redirects to the GitHub page. The GitHub project has an overview and readme.md, which basically explains how to create Google Test.

Where is the official user documentation for Google Test located or some equally useful, comprehensive documentation?

+6
source share
2 answers

The documentation is located in the GitHub repository as .md files in the googletest / docs directory. Start with Primer.md . And then you can look at more complex topics.

+8
source

Shameless plugin: because it is annoying to locally view undetectable md files and use complicated ones to navigate md files on github, I publish Google test documents ( https://gunslingerfry.imtqy.com/google-test-docs ) using mkdocs with very minimal adding an index.

0
source

Source: https://habr.com/ru/post/1238512/


All Articles