I have a GUI application in Qt. I am testing it with the help of GTEST.
There are some functions that I want to check at run time i.e based on button clicks am I getting the expected output. As far as I have understood we cannot have multiple calls of RUN_ALL_TESTS() as it will cause irrelevant tests to run too.
Is there any way I can cause Tests to run only when a specific event is received by the application?
Can some one please help me with this?
Thank You.