2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2020 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2021-04-14 15:30:43 +02:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <googletest.h>
|
|
|
|
|
|
|
|
|
|
#include <qmldesigner/designercore/include/abstractview.h>
|
|
|
|
|
|
|
|
|
|
class AbstractViewMock : public QmlDesigner::AbstractView
|
|
|
|
|
{
|
|
|
|
|
public:
|
2021-04-15 15:10:18 +02:00
|
|
|
MOCK_METHOD(void, nodeOrderChanged, (const QmlDesigner::NodeListProperty &listProperty), (override));
|
2021-04-14 15:30:43 +02:00
|
|
|
};
|