How to execute Qt main application with Qt Test Application.
-
I have the Qt project application and the Qt Test application under a sub directory. I am unable to execute the main application to test the button click functionality.Can someone help me resolve this.
-
-
@aha_1980 I need to run main app with the test app synchronized with each other. Both the app should run simultaneously.And thanks for the reply
-
I need to run main app with the test app synchronized with each other. Both the app should run simultaneously.
-
Hi,
Can you explain your use case ?
-
I am developing sample test cases for calculator app in which the buttons of the calculator should be clicked automatically by Qt Test app and the result is displayed in the calculator app.
For Example:
button(operand) +button(operator)+button(operand)=Display(output). -
@SGaist
I am developing sample test cases for calculator app in which the buttons of the calculator should be clicked automatically by Qt Test app and the result is displayed in the calculator app.
For Example:
button(operand) +button(operator)+button(operand)=Display(output). -
In that case, you should test the widget itself. Your application's main is likely just creating an instance of it and showing it.