aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppeditor/cppsourceprocessertesthelper.h
blob: dfd40fefa309ce8181b3a6193c41b85e97db9fd7 (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include <QtGlobal>
#include <QString>

namespace Utils { class FilePath; }

namespace CppEditor::Tests::Internal {

class TestIncludePaths
{
    Q_DISABLE_COPY(TestIncludePaths)

public:
    static QString includeBaseDirectory();
    static QString globalQtCoreIncludePath();
    static QString globalIncludePath();
    static Utils::FilePath directoryOfTestFile();
    static Utils::FilePath testFilePath(const QString &fileName = QLatin1String("file.cpp"));
};

} // CppEditor::Tests::Internal