Unit Testing
There is no standard unit testing framework in C++ yet, but many options available. At our stage of development, we want a simple internal framework that allows us to run unit tests in isolation, nothing fancy, really just a way to declare tests, and run over them all at once. As we are using CMake for our build system, we also want the system to integrate with CTest.
Read More