Where are the tests in Qt?

I read the Qtestlib tutorial and tutorial and got acquainted with the step-by-step procedure for developing a test.

If I am right, Qt has already developed several test cases for testing its functions. Can someone tell me where these codes are in the Qt source tree?

If I need to modify them (test cases), is it possible to do this?

Thanks in advance, Niv

+2
source share
1 answer

Unit tests are not included in the source distributions, but they are present in the Git repository: http://qt.gitorious.org/qt/qt/trees/4.7/tests/auto

+5
source

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


All Articles