-
Task
-
Resolution: Unresolved
-
Not Evaluated
-
None
-
None
-
None
It would be nice to have the possibility to have QVERIFY/QCOMPARE versions that actually continues on errors rather than stops the function.
For example
QVERIFY_STOP(list.size(), 1);
QVERIFY_CONTINUE(list[0].someBool);
QCOMPARE_CONTINUE(list[0].name, "Sune");
With somewhat better naming than what I can come up with here. Google test uses ASSERT and EXPECT for test stopping and not-stopping verbage.
At least to me, when debugging test failures having the possibility to see a bit more about the errors is often helpful.