| 240 | } |
| 241 | |
| 242 | void TestProjectLoad::addLotsOfFiles() |
| 243 | { |
| 244 | TestProject p = makeProject(); |
| 245 | |
| 246 | ICore::self()->projectController()->openProject(p.file); |
| 247 | QTRY_COMPARE(ICore::self()->projectController()->projects().size(), 1); |
| 248 | IProject* project = ICore::self()->projectController()->projects().first(); |
| 249 | QCOMPARE(project->projectFile().toUrl(), p.file); |
| 250 | |
| 251 | QVERIFY(fillProject(50, 25, p, true)); |
| 252 | |
| 253 | QTest::qWait(2000); |
| 254 | } |
| 255 | |
| 256 | void TestProjectLoad::addMultipleJobs() |
| 257 | { |
nothing calls this directly
no test coverage detected