Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find comprehensive documentation on Google Test?

Tags:

googletest

A Google search yields the GitHub page for Google Test. I'm finding many links around the web to https://github.com/google/googletest, which now redirects to the GitHub page. The GitHub project has an overview and a readme.md, which mostly explains how to build Google Test.

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

like image 455
Linus Lindholm Avatar asked Dec 17 '15 10:12

Linus Lindholm


People also ask

How do I start Google Test C++?

In Solution Explorer, right-click on the solution node and choose Add > New Project. Set Language to C++ and type test in the search box. From the results list, choose Google Test Project. Give the test project a name and choose OK.

What are the Google tests called?

Google Test (also known as gtest) is a unit testing library for the C++ programming language, based on the xUnit architecture.

How does Google Test work?

Independent and Repeatable: Googletest isolates the tests by running each of them on a different object. Portable and Reusable: Googletest works on different Oses (Linux, Windows, or a Mac), with different compilers. When tests fail, it should provide as much information about the problem as possible.


1 Answers

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

like image 129
Linus Lindholm Avatar answered Sep 28 '22 20:09

Linus Lindholm