2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2016-06-02 17:17:20 +02:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <qmlprofiler/qmlprofilermodelmanager.h>
|
2017-05-29 16:04:31 +02:00
|
|
|
#include <qmlprofiler/qmlprofilerruncontrol.h>
|
2017-06-13 11:43:04 +02:00
|
|
|
|
2016-06-02 17:17:20 +02:00
|
|
|
namespace QmlProfiler {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class LocalQmlProfilerRunnerTest : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
2022-06-22 15:43:33 +02:00
|
|
|
|
2016-06-02 17:17:20 +02:00
|
|
|
public:
|
2018-11-24 12:14:44 +01:00
|
|
|
LocalQmlProfilerRunnerTest(QObject *parent = nullptr);
|
2016-06-02 17:17:20 +02:00
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void testRunner();
|
|
|
|
|
void testFindFreePort();
|
|
|
|
|
void testFindFreeSocket();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace QmlProfiler
|