// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once #include #include #include #include namespace QmlProfiler::Internal { class QmlProfilerClientManagerTest : public QObject { Q_OBJECT public: QmlProfilerClientManagerTest(); private slots: void testConnectionFailure_data(); void testConnectionFailure(); void testUnresponsiveTcp(); void testUnresponsiveLocal(); void testResponsiveTcp_data(); void testResponsiveTcp(); void testResponsiveLocal_data(); void testResponsiveLocal(); void testInvalidData(); void testStopRecording(); void testConnectionDrop(); private: QmlProfilerClientManager clientManager; QmlProfilerModelManager modelManager; QmlProfilerStateManager stateManager; }; } // namespace QmlProfiler::Internal