CloseAUT
void CloseAUT()Description
Closes the Application Under Test (AUT).
This function terminates the previously started target application and ensures that it is no longer running.
It is typically used at the end of a test case to clean up resources and reset the environment for subsequent test runs.
Parameter
- (none)
Example
void main()
{
StartAUT(); // Launch the application under test
// ... perform test steps ...
CloseAUT(); // Close the application under test
}