Discuss GoogleTest



GoogleTest or gtest is a testing framework developed by Google. It is mainly used for unit testing of C++ programs. It is based on the xUnit architecture, which is a widely adopted framework for writing and executing automated tests. This tutorial explains the basics as well as advanced topics related to GoogleTest such as its nomenclature, assertions, test fixtures and much more.

Advertisements