Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Testing framework for functional/system testing for C/C++?

Tags:

People also ask

What is functional testing framework?

It is an intelligent framework using multiple AI techniques, such as NLP, machine learning, and computer vision. This results in an automation framework that understands test plans written in plain English and convert them into fully functional, self-healing tests.

Which testing is used for functional testing?

Functional testing is the process through which QAs determine if a piece of software is acting in accordance with pre-determined requirements. It uses black-box testing techniques, in which the tester has no knowledge of the internal system logic.


For C++, there are lots of good unit test frameworks out there, but I couldn't find a good one for functional testing. With functional testing, I mean stuff which touches the disk, requires the whole application to be in place etc.

Point in case: What framework helps with testing things like whether your I/O works? I've got a hand-rolled system in place, which creates temporary folders, copies around a bunch of data, so the tests are always done in the same environment, but before I spend more time on my custom framework -- is there a good one out there already?