Warning, file /kdevelop/kdev-php/duchain/tests/benchmarks.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002     SPDX-FileCopyrightText: 2009 Milian Wolff <mail@milianw.de>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-only
0005 */
0006 
0007 #ifndef BENCHMARKS_H
0008 #define BENCHMARKS_H
0009 
0010 #include <QObject>
0011 #include <QFile>
0012 
0013 #include "duchaintestbase.h"
0014 
0015 namespace Php
0016 {
0017 class Benchmarks : public DUChainTestBase
0018 {
0019     Q_OBJECT
0020 
0021 public:
0022     Benchmarks();
0023 
0024 private slots:
0025     /// benchmarks the parser
0026     void parser();
0027     /// benchmarks the declaration builder
0028     void declarationBuilder();
0029     /// benchmarks the use-builder
0030     void useBuilder();
0031 };
0032 
0033 }
0034 
0035 #endif // BENCHMARKS_H