| 254 | } |
| 255 | |
| 256 | void TestProjectLoad::addMultipleJobs() |
| 257 | { |
| 258 | const TestProject p1 = makeProject(); |
| 259 | QVERIFY(fillProject(10, 25, p1, false)); |
| 260 | const TestProject p2 = makeProject(); |
| 261 | QVERIFY(fillProject(10, 25, p2, false)); |
| 262 | |
| 263 | ICore::self()->projectController()->openProject(p1.file); |
| 264 | ICore::self()->projectController()->openProject(p2.file); |
| 265 | |
| 266 | QTRY_COMPARE(ICore::self()->projectController()->projects().size(), 2); |
| 267 | } |
| 268 | |
| 269 | void TestProjectLoad::raceJob() |
| 270 | { |
nothing calls this directly
no test coverage detected