// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "cppsourceprocessertesthelper.h" #include #include 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