| 292 | } |
| 293 | |
| 294 | bool checkNodeDescription(const ProblemStoreNode *node, const QString &descr) |
| 295 | { |
| 296 | const auto *n = dynamic_cast<const ProblemNode*>(node); |
| 297 | |
| 298 | MYVERIFY(n); |
| 299 | MYCOMPARE(n->problem()->description(), descr); |
| 300 | |
| 301 | return true; |
| 302 | } |
| 303 | |
| 304 | void TestFilteredProblemStore::testPathGrouping() |
| 305 | { |
no test coverage detected