2017-01-30 11:24:46 +01:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2018-02-20 12:43:05 +01:00
|
|
|
** Copyright (C) 2017 The Qt Company Ltd.
|
2017-01-30 11:24:46 +01:00
|
|
|
** Contact: https://www.qt.io/licensing/
|
|
|
|
**
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
**
|
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
|
|
**
|
|
|
|
** GNU General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
2018-02-20 12:43:05 +01:00
|
|
|
#pragma once
|
2017-01-30 11:24:46 +01:00
|
|
|
|
2018-02-20 12:43:05 +01:00
|
|
|
#include "googletest.h"
|
2017-01-30 11:24:46 +01:00
|
|
|
|
2018-02-20 12:43:05 +01:00
|
|
|
#include <precompiledheaderstorageinterface.h>
|
2017-01-30 11:24:46 +01:00
|
|
|
|
2018-09-11 17:02:45 +02:00
|
|
|
class MockPrecompiledHeaderStorage : public ClangBackEnd::PrecompiledHeaderStorageInterface
|
2018-02-20 12:43:05 +01:00
|
|
|
{
|
|
|
|
public:
|
2018-12-04 19:03:48 +01:00
|
|
|
MOCK_METHOD3(insertProjectPrecompiledHeader,
|
2019-03-13 15:09:30 +01:00
|
|
|
void(ClangBackEnd::ProjectPartId projectPartId,
|
2018-12-04 19:03:48 +01:00
|
|
|
Utils::SmallStringView pchPath,
|
2019-07-25 13:34:07 +02:00
|
|
|
ClangBackEnd::TimeStamp pchBuildTime));
|
2019-07-24 16:23:08 +02:00
|
|
|
MOCK_METHOD2(deleteProjectPrecompiledHeader,
|
2019-07-25 13:34:07 +02:00
|
|
|
void(ClangBackEnd::ProjectPartId projectPartId, ClangBackEnd::TimeStamp buildTime));
|
2019-03-19 17:00:03 +01:00
|
|
|
MOCK_METHOD1(deleteProjectPrecompiledHeaders,
|
|
|
|
void(const ClangBackEnd::ProjectPartIds &projectPartIds));
|
2018-12-17 12:06:57 +01:00
|
|
|
MOCK_METHOD3(insertSystemPrecompiledHeaders,
|
2019-03-13 15:09:30 +01:00
|
|
|
void(const ClangBackEnd::ProjectPartIds &projectPartIds,
|
2018-12-04 19:03:48 +01:00
|
|
|
Utils::SmallStringView pchPath,
|
2019-07-25 13:34:07 +02:00
|
|
|
ClangBackEnd::TimeStamp pchBuildTime));
|
2018-12-17 12:06:57 +01:00
|
|
|
MOCK_METHOD1(deleteSystemPrecompiledHeaders,
|
2019-03-13 15:09:30 +01:00
|
|
|
void(const ClangBackEnd::ProjectPartIds &projectPartIds));
|
2019-07-31 16:54:39 +02:00
|
|
|
MOCK_METHOD1(deleteSystemAndProjectPrecompiledHeaders,
|
|
|
|
void(const ClangBackEnd::ProjectPartIds &projectPartIds));
|
2018-12-04 19:03:48 +01:00
|
|
|
MOCK_METHOD1(fetchSystemPrecompiledHeaderPath,
|
2019-03-13 15:09:30 +01:00
|
|
|
ClangBackEnd::FilePath(ClangBackEnd::ProjectPartId projectPartId));
|
2019-04-10 17:44:34 +02:00
|
|
|
MOCK_CONST_METHOD1(fetchPrecompiledHeader,
|
|
|
|
ClangBackEnd::FilePath(ClangBackEnd::ProjectPartId projectPartId));
|
2019-04-10 19:24:36 +02:00
|
|
|
MOCK_CONST_METHOD1(fetchPrecompiledHeaders,
|
|
|
|
ClangBackEnd::PchPaths(ClangBackEnd::ProjectPartId projectPartId));
|
2019-07-25 15:01:25 +02:00
|
|
|
MOCK_CONST_METHOD1(
|
|
|
|
fetchTimeStamps,
|
|
|
|
ClangBackEnd::PrecompiledHeaderTimeStamps(ClangBackEnd::ProjectPartId projectPartId));
|
2020-06-13 19:14:05 +02:00
|
|
|
MOCK_CONST_METHOD0(fetchAllPchPaths, ClangBackEnd::FilePaths());
|
2018-02-20 12:43:05 +01:00
|
|
|
};
|