| 531 | } |
| 532 | |
| 533 | bool TestProblemModel::checkLabel(int row, const QModelIndex &parent, const QString &label) |
| 534 | { |
| 535 | QModelIndex idx = m_model->index(row, 0, parent); |
| 536 | MYVERIFY(idx.isValid()); |
| 537 | MYCOMPARE(m_model->data(idx).toString(), label); |
| 538 | |
| 539 | return true; |
| 540 | } |
| 541 | |
| 542 | bool TestProblemModel::checkPathGroup(int row, const IProblem::Ptr &problem) |
| 543 | { |