Even though Qt and Qt Quick tests are both really good auto-testing frameworks, we can also integrate some other third-party unit testing frameworks to test for different issues. You can also compare the results from different frameworks to make sure there are no false positives and ensure that the quality of your product is at its best. Besides their own Qt Test framework, Qt Creator also integrates several other different auto test suites into the editor, such as Google C++ Testing Framework and Boost.Test, for automated unit testing.
First, we will learn how we can integrate Google Test into our project.