I'm trying to stresstest an gui application and I'm not too sure how to do this. First I have an application where all the gui and helper functions are located. I also have two external libraries that I've made which this app uses. The libraries only do small things and I would like to unit test these parts when QtMock is up and working (currently its not compatible with qt 4.8 for some reason).
I would like to stress test the main application without having to change too much of the code. I had a look at QtTestLib and it seemed very basic and as if you had to integrate that code with the main code, which I dont want. I would really wanna keep the testing outside the app and was wondering how to do this? Not too sure if I should export my enitre gui app as a external lib that I could import into my test?
How do you usually do this to really stress test the entire thing. No idea how and where I should do the test code and I would appreciate any help!