File indexing completed on 2024-05-19 04:36:54

0001 /*
0002     SPDX-FileCopyrightText: 2010 Milian Wolff <mail@milianw.de>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-only
0005 */
0006 
0007 #ifndef PHP_BENCH_COMPLETION_H
0008 #define PHP_BENCH_COMPLETION_H
0009 
0010 #include "../../duchain/tests/duchaintestbase.h"
0011 
0012 namespace Php {
0013 
0014 class BenchmarkCodeCompletion : public DUChainTestBase
0015 {
0016     Q_OBJECT
0017 
0018 public slots:
0019     // don't do the stuff we do in the DUChainTestBase
0020     void initTestCase();
0021 
0022 private slots:
0023     void globalCompletion();
0024     void globalCompletionBigFile();
0025     void completionData();
0026 };
0027 
0028 }
0029 
0030 #endif // PHP_BENCHMARKCODECOMPLETION_H