| 41 | } |
| 42 | |
| 43 | class TestProblemModelSet : public QObject |
| 44 | { |
| 45 | Q_OBJECT |
| 46 | private Q_SLOTS: |
| 47 | void initTestCase(); |
| 48 | void cleanupTestCase(); |
| 49 | |
| 50 | void testAddModel(); |
| 51 | void testFindModel(); |
| 52 | void testModelListing(); |
| 53 | void testRemoveModel(); |
| 54 | |
| 55 | private: |
| 56 | QScopedPointer<ProblemModelSet> m_set; |
| 57 | QVector<TestModelData> m_testData; |
| 58 | |
| 59 | }; |
| 60 | |
| 61 | void TestProblemModelSet::initTestCase() |
| 62 | { |
nothing calls this directly
no test coverage detected