ACF $AcfVersion:0$
CMultiThreadingTest.h
Go to the documentation of this file.
1// SPDX-License-Identifier: LGPL-2.1-or-later OR GPL-2.0-or-later OR GPL-3.0-or-later OR LicenseRef-ACF-Commercial
2#pragma once
3
4
5// Qt includes
6#include <QtCore/QObject>
7#include <QtTest/QtTest>
8
9// ACF includes
13#include <GeneratedFiles/MultiThreadingComponentTest/CMultiThreadingComponentTest.h>
14
15class CMultiThreadingTest: public QObject
16{
17 Q_OBJECT
18private slots:
19 void initTestCase();
20
21 void RunParallel4();
22 void CloneTest();
23
24 void cleanupTestCase();
25
26private:
27 std::shared_ptr<CMultiThreadingComponentTest> m_testPartituraInstanceCompPtr;
28};
29
30