Is there a test suite for checking the QT port?

We ported parts of Qt to operating systems that are not supported by Nokia. It seems that the port is working, but how can we know for sure? It would be great if there was a test suite that we could use to test our port. Is there such a test suite?

+3
source share
1 answer

Yes, there are Qt unit tests in the git public repository developed with Qt.

http://qt.gitorious.org/qt/qt , see catalog tests/auto.

You cannot run all the tests yourself, and not all of them must pass, but you should use most of them.

+4
source

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


All Articles