File indexing completed on 2025-01-05 04:59:50
0001 /* 0002 * SPDX-FileCopyrightText: 2015 Kevin Ottens <ervin@kde.org> 0003 SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 0004 */ 0005 0006 0007 #include "testhelpers.h" 0008 0009 #include <QTest> 0010 0011 #include "utils/jobhandler.h" 0012 0013 using namespace Testlib; 0014 0015 void TestHelpers::waitForEmptyJobQueue() 0016 { 0017 while (Utils::JobHandler::jobCount() != 0) { 0018 QTest::qWait(20); 0019 } 0020 }