aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/tests/testdroptypeentries.h
blob: 98717bd215c1ce3202309e6818490b80422d96cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef TESTDROPTYPEENTRIES_H
#define TESTDROPTYPEENTRIES_H

#include <QtCore/QObject>

class TestDropTypeEntries : public QObject
{
    Q_OBJECT
    private slots:
        void testDropEntries();
        void testDontDropEntries();
        void testDropEntryWithChildTags();
        void testDontDropEntryWithChildTags();
        void testConditionalParsing_data();
        void testConditionalParsing();
        void testEntityParsing();
};

#endif