aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests/test_generator/dummygentest.h
blob: 1b1143b0a609357b6d03b4173ebe7ca02df6b807 (plain)
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
// 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 DUMMYGENTABLETEST_H
#define DUMMYGENTABLETEST_H

#include <QObject>

class DummyGenerator;

class DummyGenTest : public QObject
{
    Q_OBJECT

private:
    QString workDir;
    QString headerFilePath;
    QString typesystemFilePath;
    QString generatedFilePath;
    QString projectFilePath;

private slots:
    void initTestCase();
    void testCallGenRunnerWithFullPathToDummyGenModule();
    void testCallGenRunnerWithNameOfDummyGenModule();
    void testCallDummyGeneratorExecutable();
    void testProjectFileArgumentsReading();
};

#endif