Summary
In this chapter, you learned about debugging using Qt Creator and the capabilities it offers in order to further analyze the codes, find issues, and try to fix them using breakpoints, call stack viewer, and so on. This was but a small taste of what can be done using a debugger, and it was meant to prepare you to take on using the debugger on your own and develop coding and debugging habits of your own that can help you overcome programming issues with much more ease. Apart from debugging and developer-level tests, we also learned about Unit Testing in Qt, which is especially important with the ever-growing number of applications and projects written using the Qt Framework. Test Automation is one of the hot topics in the application development industry nowadays, and having a clear idea about the Qt Test Framework will help you develop better and reliable tests. It is important to get used to writing Unit Tests for your projects, and yes, even for the very small ones. The cost of...