Unit testing for GUI(VC++)
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
Is there any approach to write unit test cases for GUI based applications (VC++ applications). It's my client's requirement to write test cases for it.
-
Is there any approach to write unit test cases for GUI based applications (VC++ applications). It's my client's requirement to write test cases for it.
If necessary to test the GUI, I would rather use QTP or some kind of automation software to test my GUI. If you seperate your business/data logic from the presentation layer, you should be able to write unit test against the business/data layer. For GUI testing, you can take a look at Fitnesse[^]. I haven't tried it, but have seen some demos and heard it could really work for GUI applications.