In this chapter, we looked at the modern software development cycle and learned about CI and unit testing. We also talked about developing on the host before we have the target hardware available and how we can architect our software into layers to make that easier.
In this chapter, we started to develop our BigProject. This project will be followed through the majority of this book and provide the framework to which we will apply the topics we learn about.
Finally, we looked at how we can mock units of the software to allow us to test individual pieces. We also learned about DI, one of the tools that's used to make easily testable code.
The full code for this chapter's incarnation of our BigProject can be found at https://github.com/PacktPublishing/Hands-On-Embedded-Programming-with-Qt/tree/master/Chapter05/BigProject.
In the next chapter, we will look at the...