1 /*
2     SPDX-FileCopyrightText: 2011-2012 Sven Brauch <svenbrauch@googlemail.com>
3 
4     SPDX-License-Identifier: GPL-2.0-or-later
5 */
6 
7 #ifndef QMLCOMPLETIONTEST_H
8 #define QMLCOMPLETIONTEST_H
9 
10 #include <QObject>
11 
12 namespace QmlJS {
13 
14 class QmlCompletionTest : public QObject
15 {
16     Q_OBJECT
17 private Q_SLOTS:
18     void initTestCase();
19     void cleanupTestCase();
20 
21     void testContainsDeclaration();
22     void testContainsDeclaration_data();
23     void testDoesNotContainDeclaration();
24     void testDoesNotContainDeclaration_data();
25     void testContainsText();
26     void testContainsText_data();
27 };
28 
29 }
30 #endif
31