File indexing completed on 2024-04-14 03:51:21

0001 /*
0002     This file is part of the KContacts framework.
0003     SPDX-FileCopyrightText: 2016 David Faure <faure@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #ifndef VCARDTOOL_BENCHMARK_H
0009 #define VCARDTOOL_BENCHMARK_H
0010 
0011 #include <QObject>
0012 
0013 class PerformanceTest : public QObject
0014 {
0015     Q_OBJECT
0016 public:
0017     explicit PerformanceTest(QObject *parent = nullptr);
0018     ~PerformanceTest() override;
0019 private Q_SLOTS:
0020     void testParserPerformance();
0021     void testExportPerformance();
0022 };
0023 
0024 #endif