aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/perfprofiler/tests/perfprofilertracefile_test.h
blob: 952e68d4ec3c29c30cd9555b299d8615401f5b49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include <QObject>

namespace PerfProfiler {
namespace Internal {

class PerfProfilerTraceFileTest : public QObject
{
    Q_OBJECT
public:
    explicit PerfProfilerTraceFileTest(QObject *parent = nullptr);

private slots:
    void testSaveLoadTraceData();
};

} // namespace Internal
} // namespace PerfProfiler