| 282 | |
| 283 | |
| 284 | bool checkNodeLabel(const ProblemStoreNode *node, const QString &label) |
| 285 | { |
| 286 | const auto *parent = dynamic_cast<const LabelNode*>(node); |
| 287 | |
| 288 | MYVERIFY(parent); |
| 289 | MYCOMPARE(parent->label(), label); |
| 290 | |
| 291 | return true; |
| 292 | } |
| 293 | |
| 294 | bool checkNodeDescription(const ProblemStoreNode *node, const QString &descr) |
| 295 | { |
no outgoing calls
no test coverage detected