I have a massive MFC app that uses a username/password login system.
I managed to get something in the main app ::InitInstance function. I want to start running the test suite/cases AFTER logging into the system. TestCases such as create/delete folder, etc.
I understand that TestUnits are suppose to be testing individual units (class objects) functionality. This is a bit program in my massive MFC app where everything depends on everything else. I guess what am looking for is integration testing. My main app is already instantiated and the test runner runs within the main app. Is it possible to execute commands (create/delete folder) to do integration testing... and add them into the testsuite/runner?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have a massive MFC app that uses a username/password login system.
I managed to get something in the main app ::InitInstance function. I want to start running the test suite/cases AFTER logging into the system. TestCases such as create/delete folder, etc.
I understand that TestUnits are suppose to be testing individual units (class objects) functionality. This is a bit program in my massive MFC app where everything depends on everything else. I guess what am looking for is integration testing. My main app is already instantiated and the test runner runs within the main app. Is it possible to execute commands (create/delete folder) to do integration testing... and add them into the testsuite/runner?