File: kcompletioncoretest.h

package info (click to toggle)
kcompletion 5.116.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 21,760 kB
  • sloc: cpp: 5,947; sh: 14; makefile: 7
file content (37 lines) | stat: -rw-r--r-- 849 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
    This file is part of the KDE libraries
    SPDX-FileCopyrightText: 2005 Thomas Braxton <brax108@cox.net>

    SPDX-License-Identifier: LGPL-2.0-or-later
*/

#ifndef KCOMPLETIONCORETEST_H
#define KCOMPLETIONCORETEST_H

#include "kcompletion.h"
#include <QStringList>

class Test_KCompletion : public QObject
{
    Q_OBJECT
    QStringList strings;
    QStringList wstrings;

private Q_SLOTS:
    void initTestCase();
    void isEmpty();
    void insertionOrder();
    void sortedOrder();
    void weightedOrder();
    void substringCompletion_Insertion();
    void substringCompletion_Sorted();
    void substringCompletion_Weighted();
    void allMatches_Insertion();
    void allMatches_Sorted();
    void allMatches_Weighted();
    void cycleMatches_Insertion();
    void cycleMatches_Sorted();
    void cycleMatches_Weighted();
};

#endif