summaryrefslogtreecommitdiff
path: root/src/plugins/cppeditor/cppsourceprocessertesthelper.cpp
blob: 10d925b42c0261b73f6c6022f328c986e38547f3 (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
32
33
34
35
36
37
38
39
40
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#include "cppsourceprocessertesthelper.h"

#include <utils/filepath.h>

#include <QDir>

using namespace Utils;

namespace CppEditor::Tests::Internal {

QString TestIncludePaths::includeBaseDirectory()
{
    return QLatin1String(SRCDIR)
            + QLatin1String("/../../../tests/auto/cplusplus/preprocessor/data/include-data");
}

QString TestIncludePaths::globalQtCoreIncludePath()
{
    return QDir::cleanPath(includeBaseDirectory() + QLatin1String("/QtCore"));
}

QString TestIncludePaths::globalIncludePath()
{
    return QDir::cleanPath(includeBaseDirectory() + QLatin1String("/global"));
}

FilePath TestIncludePaths::directoryOfTestFile()
{
    return FilePath::fromString(QDir::cleanPath(includeBaseDirectory())) / "local";
}

FilePath TestIncludePaths::testFilePath(const QString &fileName)
{
    return directoryOfTestFile() / fileName;
}

} // CppEditor::Tests::Internal