Qt wiki will be updated on October 12th 2023 starting at 11:30 AM (EEST) and the maintenance will last around 2-3 hours. During the maintenance the site will be unavailable.
QtCS2017 UnitTesting
Jump to navigation
Jump to search
- QTestLib has some legacy
- Need to use a class for test functions
- QASSERT and QCOMPARE all over, but little description
- Written with various flavours of QTestLib
- https://bugreports.qt.io/browse/QTBUG-63146
- Running tests
- Assuming synchroneous
- QWaitFor, QWaitForWindowActive etc. are used a lot, sometimes perhaps with little understanding?
- Specific to UI testing
- Need to handle asynchroneous behaviour better
- Use (more) mocks?
- Testing framework (used for Qt development)
- Stay with QTestLib as is
- Modify QTestLib
- Replace QTestLib with new framework
- Write from scratch (NIH)
- Use existing
- (Can pull reusable components out of QTestLib)
- Catch (https://github.com/philsquared/Catch)
- GoogleTest (https://github.com/google/googletest)
- Cucumbercpp with Qt integration
- Could we use Squish more for this?