January 2018
Intermediate to advanced
486 pages
11h 28m
English
Debugging and testing while developing your applications is completely unavoidable, but the one thing that many developers tend to miss is to take care of unit testing, which is even more important, especially in big projects and applications that are hard to fully test manually, every time they are built or a bug is fixed somewhere in their code. Unit testing refers to a method of testing parts and pieces (units) in an application to make sure they are working as intended. It's also worth noting that Test Automation, which is one of the hot topics of software development nowadays, is the process of automating unit tests using third-party software or programming.
In this section, we will learn about using the Qt Test Framework, ...