| 12 | using namespace KDevelop; |
| 13 | |
| 14 | class TestProblemStoreNode : public QObject |
| 15 | { |
| 16 | Q_OBJECT |
| 17 | private Q_SLOTS: |
| 18 | void initTestCase(); |
| 19 | void cleanupTestCase(); |
| 20 | |
| 21 | void testRootNode(); |
| 22 | void testChildren(); |
| 23 | void testLabelNode(); |
| 24 | void testProblemNode(); |
| 25 | |
| 26 | private: |
| 27 | QScopedPointer<ProblemStoreNode> m_root; |
| 28 | }; |
| 29 | |
| 30 | |
| 31 | void TestProblemStoreNode::initTestCase() |
nothing calls this directly
no test coverage detected