| 59 | }; |
| 60 | |
| 61 | void TestProblemModelSet::initTestCase() |
| 62 | { |
| 63 | AutoTestShell::init(); |
| 64 | TestCore::initialize(Core::NoUi); |
| 65 | |
| 66 | m_set.reset(new ProblemModelSet()); |
| 67 | |
| 68 | for (int i = 0; i < testModelCount; i++) { |
| 69 | m_testData.push_back(TestModelData({testModelIds[i], testModelNames[i], new ProblemModel(nullptr)})); |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | void TestProblemModelSet::cleanupTestCase() |
| 74 | { |
nothing calls this directly
no test coverage detected