aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/unittest/mockprojectpartsmanager.h
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2019-04-02 12:22:48 +0200
committerEike Ziller <eike.ziller@qt.io>2019-04-02 12:22:48 +0200
commitb5e75222373db078591f1e55642a771139fb4e4f (patch)
tree077fdd13d6dcd57dd2cbe05c318b7bbb9f0a7b69 /tests/unit/unittest/mockprojectpartsmanager.h
parent841bbfa7bf2575769d7dfec2d1f238cd65aacf5d (diff)
parent3726218b5e1311f67f41e56d1355bd35b86d9676 (diff)
Merge remote-tracking branch 'origin/4.9'
Conflicts: qbs/modules/qtc/qtc.qbs qtcreator.pri src/plugins/pythoneditor/pythoneditorplugin.cpp Change-Id: I9a95df5e16b34538539ced7dfc5d326b700794e6
Diffstat (limited to 'tests/unit/unittest/mockprojectpartsmanager.h')
-rw-r--r--tests/unit/unittest/mockprojectpartsmanager.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/tests/unit/unittest/mockprojectpartsmanager.h b/tests/unit/unittest/mockprojectpartsmanager.h
new file mode 100644
index 0000000000..b2cab59060
--- /dev/null
+++ b/tests/unit/unittest/mockprojectpartsmanager.h
@@ -0,0 +1,49 @@
+/****************************************************************************
+**
+** Copyright (C) 2016 The Qt Company Ltd.
+** 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.
+**
+****************************************************************************/
+
+#pragma once
+
+#include "googletest.h"
+
+#include <projectpartsmanagerinterface.h>
+
+class MockProjectPartsManager : public ClangBackEnd::ProjectPartsManagerInterface
+{
+public:
+ MOCK_METHOD1(update,
+ ClangBackEnd::ProjectPartContainers(
+ const ClangBackEnd::ProjectPartContainers &projectsParts));
+ MOCK_METHOD1(remove, void(const ClangBackEnd::ProjectPartIds &projectPartIds));
+ MOCK_CONST_METHOD1(
+ projects,
+ ClangBackEnd::ProjectPartContainers(const ClangBackEnd::ProjectPartIds &projectPartIds));
+ MOCK_METHOD1(updateDeferred, void(const ClangBackEnd::ProjectPartContainers &projectsParts));
+ MOCK_METHOD0(deferredUpdates, ClangBackEnd::ProjectPartContainers());
+
+ ClangBackEnd::ProjectPartContainers update(ClangBackEnd::ProjectPartContainers &&projectsParts) override
+ {
+ return update(projectsParts);
+ }
+};