Intent of testing a GUI module in QML

I study Qt-Quick-Tests, especially the GUI-Unit Test. I would like to know what Intention is? Is it to run functions written in QML, or do I want to see the user interface behavior, or is it something completely different that I haven't mentioned yet?

+4
source share
1 answer

I would like to know what Intent is?

I would suggest that the main reason for Qt Test was to test Qt yourself through regression testing . Qt has a continuous integration system (CI) that runs automated tests against batches of changes submitted by contributors through a code review . You can see all of these tests in the directory of testseach Git repository. For example, here are automatic tests qtbase.git.

From these tests, you will see that there are several applications for users, some of which are:

  • . , foo(), , bar() . GUI, . .
  • Render tests. , "" .
  • . , - ? , ?

, , . , . Qt.

, QML

.

.

, Qt. , Squish, GUI .

+3

Source: https://habr.com/ru/post/1612893/


All Articles