DEV Community

Discussion on: What do you use for testing c/c++ apps?

Collapse
 
bosley profile image
Bosley

I use cpputest for my personal projects to ensure that every time that I build, any new changes made to the code won't cause something to happen unexpectedly.

cpputest.github.io/

For everything debugging I will launch QT creator and attach my process to it. QT creator's debugger is awesome, and your project doesn't have to be a QT one or involve any of the QT libraries to use it.

doc.qt.io/qtcreator/creator-debugg...