| 84 | } |
| 85 | |
| 86 | void TestProblemStore::testFindNode() |
| 87 | { |
| 88 | for (int i = 0; i < m_problems.count(); i++) { |
| 89 | const auto *node = dynamic_cast<const ProblemNode*>(m_store->findNode(i)); |
| 90 | |
| 91 | QVERIFY(node); |
| 92 | QVERIFY(node->problem().data()); |
| 93 | QCOMPARE(node->problem().data()->description(), m_problems[i]->description()); |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | void TestProblemStore::testSeverity() |
| 98 | { |
nothing calls this directly
no test coverage detected