| 44 | } |
| 45 | |
| 46 | void TestCMakeManager::cleanup() |
| 47 | { |
| 48 | const auto projects = ICore::self()->projectController()->projects(); |
| 49 | for (IProject* p : projects) { |
| 50 | ICore::self()->projectController()->closeProject(p); |
| 51 | } |
| 52 | QVERIFY(ICore::self()->projectController()->projects().isEmpty()); |
| 53 | } |
| 54 | |
| 55 | void TestCMakeManager::testWithBuildDirProject() |
| 56 | { |
nothing calls this directly
no test coverage detected